/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #FFFFFF;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #1B5E5E;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: 1rem;
    color: #5A6C7D;
    line-height: 1.7;
}

/* Header */
.header {
    background: #FFFFFF;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(27, 94, 94, 0.1);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 60px;
    height: 60px;
}

.brand-name {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1B5E5E;
    margin: 0;
}

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

.nav-link {
    color: #1B5E5E;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #F8FFFE;
    color: #0F4444;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #F8FFFE 0%, #F0F9F9 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1B5E5E;
}

.page-header p {
    font-size: 1.25rem;
    color: #5A6C7D;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
}

.content-section.alt {
    background: #F8FFFE;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.illustration {
    width: 100%;
    height: 350px;
    border-radius: 12px;
}

.content-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-img, .office-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(27, 94, 94, 0.1);
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.policy-content {
    text-align: left;
    line-height: 1.8;
}

.policy-content h2 {
    color: #1B5E5E;
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E8F4F4;
}

.policy-content h2:first-of-type {
    margin-top: 1.5rem;
    border-top: none;
    padding-top: 0;
}

.policy-content p {
    margin-bottom: 1.2rem;
    color: #2C3E50;
}

.policy-content strong {
    color: #1B5E5E;
    font-weight: 600;
}

.placeholder-text {
    background: #F8FFFE;
    padding: 3rem;
    border-radius: 12px;
    border: 2px dashed #1B5E5E;
    text-align: center;
}

.placeholder-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.placeholder-text li {
    color: #5A6C7D;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: #1B5E5E;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo .logo {
    width: 40px;
    height: 40px;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
}

.footer-section h4 {
    color: #F4A736;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #B8D4D4;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

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

.footer-section ul li a {
    color: #B8D4D4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #F4A736;
}

.footer-bottom {
    border-top: 1px solid #2C5A5A;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #B8D4D4;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .page-header h1 {
        font-size: 2.25rem;
    }

    .content-text h2 {
        font-size: 2rem;
    }

    .placeholder-image {
        height: 250px;
    }

    .team-img, .office-img {
        height: 250px;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.75rem;
    }

    .content-text h2 {
        font-size: 1.5rem;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}