body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 5vh;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3);
    z-index: 1000;
}

header .logo {
    font-size: 130%;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li {
    cursor: pointer;
    font-size: 100%;
    position: relative;
}

header .header-buttons {
    display: flex;
    gap: 10px;
}

header .header-buttons button {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 100%;
}

header .header-buttons button:hover {
    opacity: 0.8;
}

.button-link {
    text-decoration: none;
    display: inline-block;
}

.header-buttons .button-link button {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 100%;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
}

.header-buttons .button-link button:hover {
    opacity: 0.8;
}

.nav-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.nav-link:hover {
    color: #c3c3c3;
}
  
  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 10;
    min-width: 200px;
  }
  
  .dropdown-menu li {
    padding: 10px 20px;
  }
  
  .dropdown-menu li a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    display: block;
  }
  
  .dropdown-menu li a:hover {
    background-color: #f0f0f0;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }

.lang-dropdown {
    position: relative;
    display: inline-block;
  }
  
  .lang-btn {
    padding: 8px 20px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .lang-menu {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0;
    margin-top: 5px;
    min-width: 80px;
    z-index: 1000;
    list-style: none;
  }
  
  .lang-menu.show {
    display: block;
  }
  
  .lang-menu li {
    padding: 10px;
    color: #333;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
  }
  
  .lang-menu li:hover {
    background: #f5f5f5;
  }
  
.banner-container {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
  }
  
  .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


.container {
    width: 90%;
    margin: 0 auto;
    margin-top: 10vh;
}

.section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    padding: 1% 0;
    gap: 5vh;
}

.section:nth-child(odd) {
    grid-template-areas: 
        "text image";
}
.section:nth-child(even) {
    grid-template-areas: 
        "image text";
}

.text-content {
    grid-area: text;
    padding: 20px;

}

.text-content p {
    margin-top: 10px;
    font-size: 200%;
    color: #555;
    font-family: 'Faustina', sans-serif;
    font-weight: 500;
}

.image-content {
    grid-area: image;
    position: relative;
    height: 70vh;
    background-color: #f5f5f5;
    overflow: hidden;
    border-radius: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 400px;
    min-height: 400px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;

}

.image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image_text_overlay {
    position: absolute;
    color: white;
    font-size: 350%;
    font-weight: bold;
    text-align: center;
    padding: 10px 20px;
    z-index: 2;
}


footer {
    background-color: #222;
    color: white;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}
footer .footer-section {
    flex: 1;
    margin: 10px;
}
footer h3 {
    margin-bottom: 20px;
}
footer ul {
    list-style: none;
    padding: 0;
}
footer ul li {
    margin: 10px 0;
}
footer ul li a {
    color: white;
    text-decoration: none;
}
footer p, footer ul li {
    color: white;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 200px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}