:root {
  --primary-color: #211f51;
  --secondary-color: #211f51;
}

body {
  font-size: 14px;
  color: var(--primary-color);
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 1rem;
  width: 95%;
  background-color: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 1.25rem 2.5rem;
  z-index: 50;
}

a:hover {
  color: var(--primary-color);
}

.menu {
  display: flex;
  gap: 2.5rem;
}

.menu a {
  cursor: pointer;
}

.menu .has-child > a::after {
  content: '\25BC'; /* ▼ */
  font-size: 14px;
  margin-left: 0.1rem;
  color: currentColor;
}

.sub-menu {
  display: none;
}

.btn {
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  color: white;
  background-color: var(--primary-color);
}

.bg-gradient {
  background: linear-gradient(148.02deg, #FF3841 28.64%, #FFD0A0 176%);
  box-shadow: inset 0px 0px 4.5px #FFEDED;
}