* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0d0d0d;
  color: #f2f2f2;
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  padding: 0;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #111;
  padding: 1rem 2rem;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid #fff;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ddd;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  color: #f2f2f2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #ffcc00;
}

.language-dropdown {
  position: relative;
}

.dropdown-toggle {
  background-color: #1a1a1a;
  border: 1px solid #444;
  color: #ddd;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropdown-toggle:hover {
  background-color: #222;
  color: #ffcc00;
  border-color: #ffcc00;
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  margin-top: 8px;
  background-color: #111;
  border: 1px solid #333;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(255, 204, 0, 0.15);
  z-index: 1000;
}

.dropdown-menu button {
  width: 100%;
  padding: 0.75rem 1rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  color: #eee;
  cursor: pointer;
  transition: background 0.2s ease;
}

.dropdown-menu button:hover {
  background-color: #222;
  color: #ffcc00;
}

.dropdown-menu.show {
  display: block;
}

.container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem 4rem;
  text-align: center;
}

h1 {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #fff;
  border-bottom: 2px solid #444;
  padding-bottom: 0.5rem;
}

h2 {
  font-size: 2rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: #ffcc00;
  border-left: 4px solid #ffcc00;
  padding-left: 0.6rem;
  text-align: left;
}

p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: left;
}

ul {
  text-align: left;
  margin-left: 2rem;
  margin-bottom: 2rem;
}

li {
  margin-bottom: 0.75rem;
}

img.centered-img {
  display: block;
  margin: 2rem auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: none;
  box-shadow: none;
}

hr {
  border: none;
  border-top: 1px solid #333;
  margin: 2rem 0;
}

.footer {
  font-size: 0.9rem;
  margin-top: 3rem;
  color: #999;
  text-align: center;
}

.photo-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.photo-row img {
  width: calc(100% / 3 - 1rem);
  max-width: 300px;
  border-radius: 8px;
  border: none;
  box-shadow: none;
}

.photo-row:nth-child(2) img {
  width: calc(100% / 2 - 1rem);
  border-radius: 8px;
  border: none;
  box-shadow: none;
}



.video-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 40px 0;
}

.video-wrapper {
  flex: 1 1 45%;
  max-width: 600px;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-video {
  width: 100%;
  height: auto;
  max-height: 100%;
  display: block;
  border: none;
  outline: none;
  background-color: #000;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}




.ref-button {
  margin-top: 25px;
  display: inline-block;
  padding: 20px 60px;
  background: linear-gradient(135deg, #303030, #1d1d1d);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  transition: background 0.3s ease, transform 0.2s ease;
  border: 2px solid #fff;
  box-shadow: 0 0px 15px rgb(255, 255, 255);
}

@media (max-width: 1024px) {
  .header {
    padding: 1rem;
  }

  .nav {
    gap: 1.2rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #111;
    flex-direction: column;
    gap: 0;
    display: none;
  }

  .nav.nav--open {
    display: flex;
  }

  .nav a {
    padding: 1rem 2rem;
    border-top: 1px solid #333;
  }

  .header {
    flex-wrap: wrap;
  }

  .language-dropdown {
    margin-top: 0.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
  }
}