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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3 {
    font-family: 'Libre Baskerville', serif;
    line-height: 1.2;
}

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

/* Header adjustments for language toggle */
.header .header-content {
    display: flex;
    justify-content: space-between; /* Pushes logo to left, toggle to right */
    align-items: center; /* Vertically centers items */
}

.logo h1 {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 300;
}

/* Language Toggle */
.language-toggle {
    font-size: 0.9rem;
    color: #475569; /* Matches hero-benefits color for consistency */
    font-weight: 500;
}

.language-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit; /* Inherit color from parent */
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.language-link:hover {
    background-color: #f0f4f8; /* Light background on hover */
}

.globe-icon {
    margin-right: 8px;
    font-size: 1.1rem; /* Adjust size of the globe icon */
}

.dropdown-arrow {
    margin-left: 8px;
    font-size: 0.7rem; /* Smaller arrow */
    transform: translateY(1px); /* Slight adjustment for vertical alignment */
}


/* Hero Section */
.hero {
    padding: 30px 0;
    background: #ffffff;
}

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

.hero-headline {
    font-size: 4rem;
    color: #000000;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    display: inline-block;
}

.hero-benefits li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #475569;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
}

.cta-section {
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    background: #000000;
    color: white;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.cta-button:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.4);
}

.cta-subtext {
    margin-top: 10px;
    color: #64748b;
    font-size: 0.9rem;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background: #ffffff;
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    text-align: center;
    margin-bottom: 60px;
}

.testimonial blockquote {
    font-size: 1.3rem;
    color: #475569;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial cite {
    color: #1e40af;
    font-weight: 600;
    font-style: normal;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Libre Baskerville', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 5px;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
}

.client-logos {
    text-align: center;
}

.client-logos-title {
    color: #64748b;
    margin-bottom: 30px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-placeholder {
    color: #94a3b8;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    background: #f8fafc;
}

/* Footer */
.footer {
    background: #000000;
    color: #94a3b8;
    text-align: center;
    padding: 30px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-benefits {
        text-align: center;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    .testimonial blockquote {
        font-size: 1.1rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .logos {
        gap: 20px;
    }
    
    .logo-placeholder {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    /* Responsive adjustments for language toggle */
    .language-toggle {
        font-size: 0.8rem;
    }
    .language-link {
        padding: 6px 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-benefits li {
        font-size: 1rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .trust {
        padding: 60px 0;
    }
}

/* Accessibility Enhancements */
@media (prefers-reduced-motion: reduce) {
    .cta-button {
        transition: none;
    }
    
    .cta-button:hover {
        transform: none;
    }
}

/* Focus States for Accessibility */
.cta-button:focus {
    outline: 3px solid #3b82f6;
    outline-offset: 2px;
}
