.executive-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 40px 60px;
  color: white;
  text-align: center;
  background: linear-gradient(120deg, #1f2a44 0%, #5c1f2e 75%);
}
.executive-hero-title {
  padding-top: 240px;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: white;
}
@media (min-width: 768px) {
  .executive-title {
    font-size: 72px;
  }
}
.page-link {
  position: absolute;
  top: 13rem;
  font-size: 16px;
}
.executive-section {
  padding: 100px 40px;
  background-color: #f8f5f0;
}
.executive-title {
  font-size: 48px;
  font-weight: 700;
  color: #5c1f2e;
  text-align: center;
}

.executive-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px 10px 30px;
  text-align: start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.executive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.executive-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #5c1f2e;
  text-align: start;

  margin-bottom: 16px;
}

.executive-card p {
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.6;
  text-align: start;
}
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tag-price {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 768px) {
  .tag-price {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.tag1 {
  background-color: #d4af37;
  color: #1f2a44;
  text-align: center;
  border-radius: 50px;
  padding: 5px 14px;
}
.tag2 {
  background-color: #1f2a44;
  color: white;
  text-align: center;
  border-radius: 50px;
  padding: 5px 14px;
}
.price {
  color: #5c1f2e;
  font-size: 32px;
  font-weight: 700;
}
.item {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 15px;
}
