       .center-heading {
                text-align: center;
                color: #cda45e;
            }
/* ==============================
   SECTION BASE
============================== */
.wedding-alt-section {
  padding: 80px 0;
  background: #050505;
  color: #ffffff;
}

.wedding-alt-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* ==============================
   GRID LAYOUT
============================== */
.wedding-alt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: flex-start;
}

/* Tablet & Mobile */
@media (max-width: 991px) {
  .wedding-alt-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ==============================
   BOX STYLING
============================== */
.alt-box {
  background: #0f0f0f;
  padding: 30px;
  border-left: 3px solid #cda45e;
  border-radius: 8px;
}

/* ==============================
   TEXT CONTENT
============================== */
.alt-box h2 {
  font-size: 26px;
  margin-bottom: 14px;
  line-height: 1.3;
}

.alt-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #dddddd;
  margin-bottom: 12px;
}

.wedding-feature-list,
.wedding-perfect-list {
  padding-left: 18px;
  margin: 12px 0 15px;
}

.wedding-feature-list li,
.wedding-perfect-list li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

/* ==============================
   IMAGE BOX
============================== */
.image-box {
  padding: 0;
  border: none;
}

.image-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 8px;
}

/* Tablet */
@media (max-width: 768px) {
  .image-box img {
    height: 300px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .image-box img {
    height: 240px;
  }
}

/* ==============================
   CTA SECTION
============================== */
.stone-palace-cta {
  margin-top: 50px;
  background: #0f0f0f;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  border-left: 3px solid #cda45e;
  border-right: 3px solid #cda45e;
}

.stone-palace-cta h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.stone-palace-cta p {
  font-size: 15px;
  color: #cccccc;
  margin-bottom: 20px;
}

/* ==============================
   BUTTON
============================== */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 30px;
  font-size: 15px;
  border: 2px solid #cda45e;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-arrow:hover {
  background: #cda45e;
  color: #ffffff;
}

/* Mobile Button Full Width */
@media (max-width: 480px) {
  .btn-arrow {
    width: 100%;
  }
}

/* ==============================
   MOBILE TYPOGRAPHY
============================== */
@media (max-width: 576px) {
  .alt-box h2 {
    font-size: 22px;
  }

  .alt-box p,
  .wedding-feature-list li,
  .wedding-perfect-list li {
    font-size: 14.5px;
  }

  .stone-palace-cta h2 {
    font-size: 24px;
  }
}
       
/* FAQ Section Wrapper */
.faq-section {
  max-width: 100%;
  margin: auto;
  padding: 60px 20px;
  background: #000;
}

/* Section Title */
.faq-title {
  text-align: center;
  color:#cda45e;
  margin-bottom: 40px;
}

/* Individual FAQ Item */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* Question Button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 15px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* Rotate + to × */
.faq-question.active .faq-icon {
  transform: rotate(45deg);
  color: #cda45e;
}

.faq-answer.open {
  display: block;
}
.faq-answer {
  display: none;
  padding: 0 15px 15px;
  color: #ddd;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item {
  background-color: #1a1a1a;
  margin-bottom: 10px;
  border-radius: 6px;
}
  
/* Mobile Optimization */
@media (max-width: 768px) {
  .faq-question {
    font-size: 15px;
  }
}
