.faq-section_wrapper .rsvpify-h2 {
  text-align: center;
  margin-bottom: 40px;
}

@media (max-width: 1024px) {
  .faq-section_wrapper .rsvpify-h2 {
    text-align: left;
  }
}

.faq-section_wrapper__single {
  background: #f8f8ff;
  padding: 20px 24px;
  border-radius: 12px;
  margin-top: 16px !important;
}

.faq-section_wrapper__single__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.faq-section_wrapper__single p {
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .faq-section_wrapper__single {
    padding: 24px 16px;
  }
}

.faq-section_wrapper__single__bottom {
  transition: 1s all;
}

.faq-section_wrapper__single__top h6 {
  font-weight: 400 !important;
  font-size: 20px !important;
}

/* New */
.faq-section-2-0 .faq-section {
  border-radius: 32px;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Decorative background elements */
.faq-section-2-0 .faq-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  top: -200px;
  right: -100px;
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, 30px);
  }
}

.faq-section-2-0 .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-section-2-0 .faq-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2c2263 0%, #6b5dd3 100%);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.faq-section-2-0 .faq-badge::before {
  content: "?";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  margin-right: 8px;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.faq-section-2-0 .section-subtitle {
  font-size: 18px;
  line-height: 1.6;
}

.faq-section-2-0 .faq-list {
  position: relative;
  z-index: 1;
}

.faq-section-2-0 .faq-item {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: slideIn 0.5s ease-out backwards;
}

.faq-section-2-0 .faq-item:nth-child(1) {
  animation-delay: 0.1s;
}
.faq-section-2-0 .faq-item:nth-child(2) {
  animation-delay: 0.2s;
}
.faq-section-2-0 .faq-item:nth-child(3) {
  animation-delay: 0.3s;
}
.faq-section-2-0 .faq-item:nth-child(4) {
  animation-delay: 0.4s;
}
.faq-section-2-0 .faq-item:nth-child(5) {
  animation-delay: 0.5s;
}
.faq-section-2-0 .faq-item:nth-child(6) {
  animation-delay: 0.6s;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.faq-section-2-0 .faq-item:hover {
  border-color: #2c2263;
  box-shadow: 0 8px 30px rgba(44, 34, 99, 0.1);
}

.faq-section-2-0 .faq-item.active {
  border-color: #2c2263;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.faq-section-2-0 .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

.faq-section-2-0 .faq-item:hover .faq-question {
  padding-left: 32px;
}

.faq-section-2-0 .question-text {
  font-size: 18px;
  font-weight: 700;
  color: #2c2263;
  line-height: 1.5;
  flex: 1;
  margin-right: 20px;
  transition: color 0.3s ease;
}

.faq-section-2-0 .faq-item.active .question-text {
  color: #6b5dd3;
}

.faq-section-2-0 .faq-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #2c2263 0%, #6b5dd3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-section-2-0 .faq-icon::before,
.faq-section-2-0 .faq-icon::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

.faq-section-2-0 .faq-icon::after {
  transform: rotate(90deg);
}

.faq-section-2-0 .faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #6b5dd3 0%, #2c2263 100%);
}

.faq-section-2-0 .faq-item.active .faq-icon::after {
  opacity: 0;
}

.faq-section-2-0 .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-section-2-0 .faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-section-2-0 .answer-content {
  padding: 0 28px 28px 28px;
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  animation: fadeInAnswer 0.5s ease-out;
}

@keyframes fadeInAnswer {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-section-2-0 .cta-box {
  margin-top: 50px;
  background: linear-gradient(135deg, #2c2263 0%, #6b5dd3 100%);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out 0.7s backwards;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-section-2-0 .cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: rotate(45deg);
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0%,
  100% {
    transform: translateX(-100%) rotate(45deg);
  }
  50% {
    transform: translateX(100%) rotate(45deg);
  }
}

.faq-section-2-0 .cta-box h3 {
  font-size: 28px;
  color: white;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.faq-section-2-0 .cta-box p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.faq-section-2-0 .cta-button {
  background: white;
  color: #2c2263;
  border: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.faq-section-2-0 .cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.faq-section-2-0 .cta-button:active {
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .faq-section-2-0 .faq-section {
    padding: 40px 24px;
  }

  .faq-section-2-0 .question-text {
    font-size: 16px;
  }

  .faq-section-2-0 .answer-content {
    font-size: 15px;
  }

  .faq-section-2-0 .cta-box {
    padding: 30px 20px;
  }
}

@media (min-width: 1024px) {
  .faq-section_wrapper h2 {
    text-align: left !important;
  }
}
