.hero-bg {
    background-color: #ffffff;
    background-image: url("../header.png");
    background-size: cover;
    background-position: center;
}

h1 {
    color: #1f2937 !important;
}

.lang-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.lang-btn {
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.lang-btn.active {
    background-color: #5EC2C2;
    color: white;
}

.lang-btn:not(.active) {
    background-color: transparent;
    color: #4a5568;
}

.lang-btn:hover:not(.active) {
    background-color: #e2e8f0;
}