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;
  }
  
  .single-slide-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--image-url);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 20px 10px;
}

.achieve-carousel-slide {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.single-slide-page h1 {
    font-family: 'Faustina', serif;
    font-weight: 500;
    color: rgb(0, 0, 0);
    font-size: 90px;
    text-shadow: 2px 2px 10px rgba(255, 255, 255, 0.632);
    margin: 0 0 5vh 0;
    text-align: center;
}

.accordion-container {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 2vh;
    margin-bottom: 40px;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.929);
    color: rgb(0, 0, 0);
    border: 2px solid rgb(9, 102, 105);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.5s ease;
    width: 100%;
}

.accordion-header {
    padding: 20px;
    position: relative;
}

.accordion-header::after {
    content: "▼";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    transition: transform 0.5s ease;
}

.accordion-item.active .accordion-header::after {
    content: "▲";
}

.accordion-header h3 {
    margin: 0;
    font-size: 22px;
    transition: color 0.3s ease;
}

.accordion-content {
    color: rgb(0, 0, 0);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    border-radius: 0 0 15px 15px;
}

.accordion-content h4 {
    font-size: 18px;
    font-weight: bold;
    margin: 7px 0 5px 30px;
}

.accordion-content p {
    margin: 0 0 0px 50px;
    padding: 0 20px 20px;
    font-size: 18px;
    line-height: 1.5;
}

.accordion-content a.inline-link {
    text-decoration: underline !important;
    color: inherit !important;
    cursor: pointer;
}

.accordion-item.active {
    background: rgba(255, 255, 255, 0.881);
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.452);
    
    border: 2px solid black;
}

.accordion-item.active .accordion-header h3 {
    color: #000000;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    color: #000000;
}

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;
}