.vip-section {
  background: #fffdfa;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Georgia', serif;
  color: #1a1a1a;
}

.vip-section__container {
  max-width: 1200px;
  margin: 0 auto;
}

.vip-section__subtitle {
  font-size: 14px;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.vip-section__title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #031633;
}

.vip-section__title .highlight {
  color: #f2b805;
  font-style: italic;
}

.vip-section__desc {
  color: #4b4b4b;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

.vip-section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 20px;
}

.vip-card {
  background: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 24px;
  gap: 16px;
  text-align: left;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #f2b805;
}

.vip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.vip-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fffdf2;
  border: 1px solid #f2b805;
  overflow: hidden;
}

.vip-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vip-card__content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #031633;
}

.vip-card__content p {
  font-size: 0.95rem;
  color: #4b4b4b;
  line-height: 1.6;
}

.vip-card__arrow {
  margin-left: auto;
  font-size: 1.5rem;
  color: #f2b805;
  font-weight: bold;
}

.tag {
  background-color: #f2b805;
  color: #111827;
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .vip-section {
    padding: 60px 16px;
    text-align: center;
  }

  .vip-section__title {
    font-size: 1.9rem;
  }

  .vip-section__desc {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .vip-section__grid {
    grid-template-columns: 1fr;
    padding: 10px;
    gap: 16px;
  }

  .vip-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .vip-card__icon {
    margin-bottom: 12px;
  }

  .vip-card__content h4 {
    font-size: 1rem;
  }

  .vip-card__content p {
    font-size: 0.9rem;
  }

  .vip-card__arrow {
    display: none;
  }
}
