* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1A1A1A;
    background: #F8FAFC;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #0B1C2D;
    padding: 16px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    text-decoration: none;
}

.main-nav a {
    color: #fff;
    margin-left: 24px;
    text-decoration: none;
    font-weight: 500;
}

.btn-nav {
    background: #FF7A18;
    padding: 8px 16px;
    border-radius: 4px;
}

/* Hero */
.hero {
    background: #0B1C2D;
    color: #fff;
    padding: 100px 0;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.btn-primary {
    background: #FF7A18;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 10px;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
}

/* Sections */
section {
    padding: 80px 0;
}

.services h2,
.why-us h2,
.cta h2 {
    margin-bottom: 40px;
    font-size: 32px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
}

/* Why Us */
.check-list li {
    list-style: none;
    margin-bottom: 10px;
}

/* CTA */
.cta {
    background: #1F6AE1;
    color: #fff;
    text-align: center;
}

/* Footer */
.site-footer {
    background: #0B1C2D;
    color: #fff;
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    opacity: 0.7;
}

.page-hero {
    background: #1F6AE1;
    color: #fff;
    padding: 70px 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* Legal Pages */
.hero-section {
    background: linear-gradient(135deg, #0B1C2D 0%, #1e3a8a 100%);
    color: white;
    padding: 80px 0 40px;
    text-align: center;
}

.content-section {
    padding: 60px 0;
}

.policy-section, .terms-section {
    margin-bottom: 3rem;
}

.policy-section h3, .terms-section h3 {
    color: #0B1C2D;
    font-weight: 600;
    margin-bottom: 1rem;
}

.policy-section h4, .terms-section h4 {
    color: #FF7A18;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}

.last-updated {
    background: #F8FAFC;
    padding: 1rem;
    border-left: 4px solid #FF7A18;
    margin-bottom: 2rem;
}

.scrollable-content {
    max-height: 70vh;
    overflow-y: auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
    max-width: 900px;
    margin: 0 auto;
}

.scrollable-content::-webkit-scrollbar {
    width: 8px;
}

.scrollable-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.scrollable-content::-webkit-scrollbar-thumb {
    background: #FF7A18;
    border-radius: 4px;
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
    background: #e6691a;
}

/* Hero Section Images - Consistent sizing and rounded corners */
.hero-section img {
    max-height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .grid-3,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 34px;
    }

    .main-nav a {
        margin-left: 12px;
    }
}