/* CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base Styles */
body {
    font-family: 'Source Sans Pro', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Header Styles */
.header {
    background-color: rgba(22, 22, 22, 0.9);
    padding: 1rem 0;
    position: relative;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect width="1920" height="1080" fill="%23243682"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Company Information Section */
.company-info {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.company-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.company-content h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    color: #243682;
    margin-bottom: 1rem;
}

.company-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.location-info h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    color: #243682;
    margin-bottom: 1rem;
}

.address {
    font-style: normal;
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

/* Footer */
.footer {
    background-color: #243682;
    color: #e5e5e8;
    padding: 2rem 0;
    text-align: center;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-text {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .header-container {
        padding: 0 1rem;
    }
    
    .logo {
        height: 50px;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .company-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .company-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .company-info {
        padding: 2rem 0;
    }
    
    .company-container {
        padding: 0 1rem;
    }
    
    .company-content h2 {
        font-size: 1.8rem;
    }
    
    .location-info h3 {
        font-size: 1.2rem;
    }
}