.header {
  position: fixed;
  left: 50%;
  top: 24px;
  width: 100%;
  background: #ffffff;
  z-index: 10;
  max-width: 1644px;
  transform: translateX(-50%);
  border-radius: 42px;
  box-shadow: 0px 0px 20px 0px #07abb5;
}

.header__contents {
  height: 84px;
  display: flex;
  position: relative;
  padding: 0 62px;
  align-items: center;
  justify-content: space-between;
}

.header__contents__logo {
  cursor: pointer;
  position: relative;
  width: 124px;
  height: 40px;
}

.header__contents__logo img {
  width: 124px;
  height: auto;
}

.header__contents__right {
  display: flex;
  position: relative;
  align-items: center;
  gap: 53px;
}

.header__contents__right__menu {
  display: flex;
  position: relative;
  gap: 47px;
  align-items: center;
}

.header__contents__right__menu__item {
  cursor: pointer;
  position: relative;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
}

.header__contents__right__menu__item.dropdown {
  position: relative;
}

.header__contents__right__menu__item .menu-text {
  display: flex;
  align-items: center;
}

.header__contents__right__menu__item img {
  position: relative;
  width: 16px;
  height: auto;
  margin-right: 8px;
}

/* 드롭다운 메뉴 스타일 */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 45px);
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0px 8px 32px rgba(7, 171, 181, 0.2);
  border: 1px solid #e3e3e3;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu__item {
  padding: 12px 20px;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #333333;
  cursor: pointer;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f5f5f5;
}

.dropdown-menu__item:last-child {
  border-bottom: none;
}

.dropdown-menu__item:first-child {
  border-radius: 16px 16px 0 0;
}

.dropdown-menu__item:last-child {
  border-radius: 0 0 16px 16px;
}

.dropdown-menu__item:hover {
  background: #f8fdff;
  color: #07abb5;
}

.header__contents__right__login {
  cursor: pointer;
  display: flex;
  position: relative;
  gap: 10px;
  align-items: center;
}

.header__contents__right__login__icon {
  position: relative;
}

.header__contents__right__login__icon img {
  width: 35px;
  height: 33px;
}

.header__contents__right__login span {
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #ff8383;
}
