/* Base Styles */
:root {
    --primary-color: #37AFAA;
    --primary-dark: #2A8C87;
    --secondary-color: #444444;
    --light-color: #f4f4f4;
    --dark-color: #333333;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: var(--dark-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to bottom right, rgba(55, 175, 170, 0.1), rgba(55, 175, 170, 0.05));
}

.language-selector-container {
    width: 90%;
    max-width: 800px;
    background-color: white;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    padding: 40px;
    text-align: center;
    animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.logo-container img {
    width: 60px;
    height: auto;
    margin-right: 15px;
}

.logo-container h1 {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
}

/* Content Styles */
h2 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

p {
    color: var(--secondary-color);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Language Button Styles */
.language-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.language-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    background-color: white;
    color: var(--dark-color);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: 20px;
    width: 180px;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

.language-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.flag-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.language-btn:hover .flag-icon {
    color: white;
}

.language-btn span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Footer Styles */
.footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.footer p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: #777;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .language-selector-container {
        padding: 30px 20px;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .language-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .language-btn {
        width: 80%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .logo-container img {
        width: 50px;
    }
    
    .logo-container h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    p {
        font-size: 1rem;
    }
}