* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background-color: #ffffff;
    border-bottom: 5px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
}

nav .logo:hover {
    color: #0066cc;
}

nav .nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

nav .nav-links a {
    text-decoration: none;
    color: #444;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

nav .nav-links a:hover {
    color: #E3DAC9
;
}

.cta-button {
    background-color: #0066cc;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, text-shadow 0.3s;
    font-weight: 500;
}

.cta-button:hover {
    background-color: #0052a3;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Hero Section */
.hero {
    padding: 6rem 5%;
    text-align: center;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: #444;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* Services Section */
.services {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    color: #444;
    font-size: 0.95rem;
}

/* Capabilities Section */
.capabilities {
    padding: 10rem 5%;
    background-color: #ffffff;
}

.capabilities h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.capabilities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
}

.capability-item {
    display: flex;
    gap: 1rem;
}

.capability-icon {
    font-size: 1.5rem;
    color: #0066cc;
    flex-shrink: 0;
}

.capability-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.capability-item p {
    color: #444;
    font-size: 0.9rem;
}

/* Case Study / About Section */
.case-study {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.case-study-content {
    max-width: 900px;
    margin: 0 auto;
}

.case-study h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.case-study p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.metric {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0066cc;
    margin-top: 2rem;
}

/* CTA Section */
.cta-section {
    padding: 4rem 5%;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

.cta-section .cta-button {
    background-color: #0066cc;
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* Footer */
footer {
    padding: 3rem 5%;
    background-color: #1a1a1a;
    color: #999;
    text-align: center;
    font-size: 0.9rem;
}

footer p {
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #0066cc;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 5%;
    }

    nav .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .services h2,
    .capabilities h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Policy Styles */

/* Policy Pages Specific Styles */

.policy-content {
    padding: 4rem 5%;
    background-color: #f9f9f9;
    min-height: calc(100vh - 200px);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.policy-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.last-updated {
    color: #999;
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.policy-container h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0066cc;
}

.policy-container h2:first-of-type {
    margin-top: 0;
}

.policy-container p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.policy-container ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-container li {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0.75rem;
    list-style-type: disc;
}

.policy-container strong {
    color: #1a1a1a;
    font-weight: 600;
}

.policy-container a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s;
}

.policy-container a:hover {
    color: #0052a3;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .policy-content {
        padding: 2rem 5%;
    }

    .policy-container {
        padding: 2rem;
    }

    .policy-container h1 {
        font-size: 2rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
    }

    .policy-container p,
    .policy-container li {
        font-size: 0.95rem;
    }

    .policy-container ul {
        margin-left: 1.5rem;
    }
}