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

.section {
  background-color: #0F0F0F;
  background-image: url('./../images/bg-demo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  overflow: hidden;
}

.section-container {
  height: 100%;
  padding: 4rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.header {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  justify-content: center;
}

.header img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  max-width: 202px;
  max-height: 44px;
}

/* Language Dropdown Styles */
.language-switch {
  position: relative;
  display: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  background: #F0EFEF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 8px 12px;
  color: #2B2B2B;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  min-width: 120px;
  justify-content: space-between;
}

.dropdown-toggle:hover {
  background: #F0EFEF;
  border-color: rgba(255, 255, 255, 0.3);
}

.dropdown-icon {
  font-size: 16px;
}

.dropdown-text {
  flex: 1;
  text-align: left;
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(20, 20, 20, 0.95);
  background: #FEFEFE;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background: #ebe9e9;
}

.dropdown-item {
  padding: 10px 12px;
  color: #2B2B2B;
  cursor: pointer;
  transition: background-color 0.2s ease;
  font-size: 14px;
}

.dropdown-item:hover {
  background: #dfdbdb;
}

.dropdown-item:first-child {
  border-radius: 8px 8px 0 0;
}

.dropdown-item:last-child {
  border-radius: 0 0 8px 8px;
}

@media (max-width: 768px) {
  .section-container {
    padding: 2rem 1rem;
    padding-top: 4rem;
  }

  .header {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .content {
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 1rem;
  }

  .dropdown-toggle {
    min-width: 140px;
    padding: 10px 14px;
  }

  .dropdown-menu {
    min-width: 140px;
  }
}