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

:root {
    --primary-blue: #1E3A8A;
    --accent-blue: #3B82F6;
    --light-blue: #EFF6FF;
    --text-dark: #1F2937;
    --text-medium: #4B5563;
    --text-light: #6B7280;
    --white: #FFFFFF;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #FFFFFF;
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0;
}

/* Header */
.header {
    padding: 50px 80px;
    background: var(--white);
    border-bottom: 1px solid rgba(30, 58, 138, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-graphic svg {
    width: 60px;
    height: 60px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 1px;
    line-height: 1;
}

.logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-medium);
    letter-spacing: 6px;
    text-transform: uppercase;
}

/* Main Content */
.main-content {
    flex: 1;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Hero Section */
.hero-section {
    padding: 140px 80px 120px;
    position: relative;
}

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

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 500;
    color: var(--primary-blue);
    line-height: 1.3;
    margin-bottom: 50px;
    letter-spacing: -0.3px;
}

.hero-divider {
    width: 80px;
    height: 1px;
    background: var(--primary-blue);
    margin: 0 auto 60px;
    opacity: 0.3;
}

.hero-description {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.9;
    font-weight: 300;
    max-width: 750px;
    letter-spacing: 0.2px;
}

.hero-description strong {
    color: var(--text-dark);
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 0 80px 100px;
    background: var(--white);
}

.services-content {
    max-width: 850px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(30, 58, 138, 0.08);
    text-align: center;
}

.services-description {
    font-size: 20px;
    color: var(--text-medium);
    line-height: 1.9;
    font-weight: 300;
    max-width: 750px;
    letter-spacing: 0.2px;
}

/* Contact Section */
.contact-section {
    padding: 0 80px 120px;
}

.contact-wrapper {
    max-width: 850px;
    margin: 0 auto;
    padding: 60px 0 0;
    border-top: 1px solid rgba(30, 58, 138, 0.08);
    text-align: center;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-email {
    font-size: 18px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
    display: inline-block;
    letter-spacing: 0.3px;
}

.contact-email:hover {
    color: var(--primary-blue);
}

.locations {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    color: var(--text-medium);
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.location-item {
    color: var(--text-dark);
    font-weight: 500;
}

.location-divider {
    color: var(--text-light);
    font-weight: 300;
}

/* Footer */
.footer {
    padding: 50px 80px;
    background: var(--white);
    border-top: 1px solid rgba(30, 58, 138, 0.08);
    margin-top: auto;
}

.copyright {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.8px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header {
        padding: 40px 50px;
    }

    .hero-section {
        padding: 100px 50px 90px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-description {
        font-size: 19px;
    }

    .services-section {
        padding: 0 50px 80px;
    }

    .contact-section {
        padding: 0 50px 100px;
    }

    .footer {
        padding: 40px 50px;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 35px 30px;
    }

    .logo-container {
        gap: 15px;
    }

    .logo-graphic svg {
        width: 50px;
        height: 50px;
    }

    .logo-main {
        font-size: 28px;
    }

    .logo-sub {
        font-size: 10px;
        letter-spacing: 4px;
    }

    .hero-section {
        padding: 80px 30px 60px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .hero-divider {
        width: 60px;
        margin-bottom: 50px;
    }

    .hero-description {
        font-size: 18px;
    }

    .services-section {
        padding: 0 30px 70px;
    }

    .services-content {
        padding-top: 50px;
    }

    .services-description {
        font-size: 18px;
    }

    .contact-section {
        padding: 0 30px 80px;
    }

    .contact-wrapper {
        padding: 50px 0 0;
    }

    .contact-email {
        font-size: 17px;
    }

    .locations {
        font-size: 16px;
        flex-wrap: wrap;
    }

    .footer {
        padding: 40px 30px;
    }

    .copyright {
        font-size: 11px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 30px 20px;
    }

    .logo-container {
        gap: 12px;
    }

    .logo-graphic svg {
        width: 45px;
        height: 45px;
    }

    .logo-main {
        font-size: 24px;
    }

    .logo-sub {
        font-size: 9px;
        letter-spacing: 3px;
    }

    .hero-section {
        padding: 60px 20px 50px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .hero-divider {
        width: 50px;
        margin-bottom: 40px;
    }

    .hero-description {
        font-size: 16px;
    }

    .services-section {
        padding: 0 20px 60px;
    }

    .services-content {
        padding-top: 40px;
    }

    .services-description {
        font-size: 16px;
    }

    .contact-section {
        padding: 0 20px 70px;
    }

    .contact-wrapper {
        padding: 40px 0 0;
    }

    .contact-email {
        font-size: 16px;
    }

    .locations {
        font-size: 15px;
    }

    .footer {
        padding: 35px 20px;
    }
}

/* Print Styles */
@media print {
    body {
        background: white;
    }

    .header {
        position: static;
        border-bottom: 1px solid var(--primary-blue);
    }
}
