:root {
    --primary-color: #0F3A3A;
    --secondary-color: #1F5A5A;
    --accent-color: #FF6635;
    --background-color: #FAFAFA;
    --card-background: #FFFFFF;
    --text-primary: #2C2C2C;
    --text-secondary: #6B7280;
    --border-color: #E5E7EB;
    --gradient-primary: linear-gradient(135deg, #0F3A3A 0%, #1F5A5A 100%);
    --gradient-accent: linear-gradient(135deg, #FF6635 0%, #E55A2B 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-color);
}

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

/* Header */
.header {
    background: var(--card-background);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-container a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.aux-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* Page Hero */
.page-hero {
    background: var(--gradient-primary);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    padding: 4rem 0;
    min-height: 60vh;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.content-section p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expertise-item {
    background: var(--card-background);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.expertise-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.expertise-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0;
}

/* Policy Placeholder */
.policy-placeholder {
    background: var(--card-background);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.policy-placeholder p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.policy-placeholder ul {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 2rem;
    padding-left: 2rem;
}

.policy-placeholder li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.policy-placeholder em {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand p {
    margin-top: 1rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-column a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.8;
    font-size: 0.875rem;
}

.disclaimer {
    margin-top: 0.5rem;
    font-size: 0.75rem !important;
    opacity: 0.6 !important;
}

/* Policy Content Styles */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.last-updated {
    text-align: center;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.policy-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact-details {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin-top: 1rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* About Page Styles */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.section-with-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.section-with-image.reverse {
    grid-template-columns: 1fr 2fr;
}

.section-with-image.reverse .text-content {
    order: 2;
}

.section-with-image.reverse .image-content {
    order: 1;
}

.about-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: var(--background-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.centered-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.approach-visual {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.commitment-item {
    text-align: center;
    padding: 1.5rem;
}

.commitment-icon,
.expertise-icon {
    margin: 0 auto 1rem;
    display: flex;
    justify-content: center;
}

.commitment-item h3,
.expertise-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.commitment-item p,
.expertise-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.expertise-item {
    background: var(--background-color);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--card-background);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1.5rem;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.875rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.875rem;
    transition: opacity 0.2s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.cookie-btn.accept {
    background: var(--accent-color);
    color: white;
}

.cookie-btn.reject {
    background: var(--text-secondary);
    color: white;
}

.cookie-btn.customize {
    background: var(--primary-color);
    color: white;
}

.cookie-link {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.875rem;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .aux-nav {
        gap: 1rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .expertise-grid,
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .section-with-image,
    .section-with-image.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-with-image.reverse .text-content,
    .section-with-image.reverse .image-content {
        order: unset;
    }
    
    .approach-visual svg {
        width: 100%;
        height: auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}