/* Homepage Specific Styles */

/* Language Switcher Section */
.language-switcher {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lang-switch-btn {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    background: rgba(255,255,255,0.2);
    border: 2px solid #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-switch-btn:hover {
    background: #fff;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.lang-switch-message {
    margin-top: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

/* Additional Layout Utilities */
.text-center-section {
    text-align: center;
    margin-bottom: 2rem;
}

.section-description {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-section {
    background: var(--white);
    padding: 60px 0;
}

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

.lang-switch-message {
    margin-top: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

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

    .lang-switch-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .lang-switch-btn {
        display: block;
        max-width: 200px;
        margin: 0 auto;
    }
}