/* Reset and Base Styles */
* {
    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: #2c3e50;
    background-color: #ffffff;
}

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

/* Header */
header {
    background-color: #1a2332;
    color: #ffffff;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.company-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.tagline {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.25rem;
    font-weight: 300;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
    font-size: 0.95rem;
}

nav a:hover {
    opacity: 0.8;
}

/* Main Content */
main {
    padding: 4rem 0;
}

/* Sections */
section {
    margin-bottom: 4rem;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    color: #1a2332;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    font-size: 1.05rem;
}

/* Key Highlights List */
.key-highlights {
    margin: 2rem 0;
}

.key-highlights ul {
    list-style: none;
    padding-left: 0;
}

.key-highlights li {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
}

.key-highlights li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 1.25rem;
}

.key-highlights strong {
    color: #1a2332;
    font-weight: 600;
}

/* Team Section Specific */
.team-highlights {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.team-highlights ul {
    list-style: none;
    padding: 0;
}

.team-highlights li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.team-highlights li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 1.5rem;
    line-height: 1.2;
}

/* Contact Section */
#contact {
    background-color: #f1f5f9;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

#contact p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.email-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
}

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

/* Footer */
footer {
    background-color: #1a2332;
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
    margin-top: 4rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav {
        margin-top: 1.5rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .company-name {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.875rem;
    }
    
    .team-highlights {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.text-muted {
    color: #64748b;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}