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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f5f5;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #e8e8e8;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px;
    width: auto;
}

.language-switcher {
    display: flex;
    gap: 15px;
}

.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.lang-btn:hover {
    opacity: 0.8;
}

.lang-btn.active {
    opacity: 1;
}

.lang-btn img {
    width: 28px;
    height: 21px;
    object-fit: cover;
    border-radius: 2px;
}

/* Banners Container */
.banners-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Banner Styles */
.banner {
    width: 100%;
    height: 400px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.banner:hover .banner-image {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.3s ease;
    z-index: 1;
}

.banner:hover .banner-overlay {
    background-color: rgba(0, 0, 0, 0.6);
}

.banner-title {
    position: absolute;
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
    z-index: 2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.banner:hover .banner-title {
    transform: scale(1.1);
    text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .logo {
        font-size: 22px;
    }

    .banner {
        height: 300px;
    }

    .banner-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 12px 15px;
    }

    .logo {
        font-size: 18px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .lang-btn img {
        width: 16px;
        height: 12px;
    }

    .banner {
        height: 200px;
    }

    .banner-title {
        font-size: 24px;
    }
}

/* Footer Styles */
.footer {
    background-color: #e8e8e8;
    color: #333;
    padding: 50px 40px 20px;
    margin-top: 40px;
    border-top: 1px solid #d0d0d0;
}

.footer-content {
    display: flex;
    justify-content: center;
    gap: 80px;
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: #555;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

.footer-section a {
    color: #333;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-section a:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #d0d0d0;
    font-size: 12px;
    color: #999;
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 20px 15px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 12px;
    }

    .footer-section p {
        font-size: 13px;
    }
}
