/* Header */
.header {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  box-shadow: 0px 10px 12px 0px rgba(0, 0, 0, 0.04),
              0px 8px 12px -6px rgba(0, 0, 0, 0.04),
              0px 6px 4px -1px rgba(0, 0, 0, 0.04),
              0px 4px 6px -2px rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
}

.header-content {
  display: flex;
  align-items: center;
  height: 80px;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo-container {
  background-color: #ffd000;
  height: 80px;
  width: 221px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px 0 0 24px;
}

.logo-container img {
  height: 40px;
  width: auto;
}

.nav-item {
  color: #343741;
  text-decoration: none;
  font-size: 18px;
  font-weight: 400;
  padding: 0 24px;
  line-height: 25.6px;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 32px;
}

.action-btn {
  background: none;
  border: none;
  color: #1a1446;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto', sans-serif;
  line-height: 22.4px;
}

.action-btn:hover {
  opacity: 0.8;
}

.icon-wrapper {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-wrapper svg {
  width: 16px;
  height: 16px;
  fill: #1a1446;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .logo-container {
    width: 160px;
  }

  .header-actions {
    gap: 12px;
    padding-right: 16px;
  }

  .action-btn span {
    display: none;
  }
}
