:root {
    --white: #fff;
    --gray: #f4f4f4;
    --gray-dark: #a2a2a2;
    --gray-light: #eaeaea;
    --rose: #d8a39d;
    --gold: #c5a880;
    --navy: #2c3e50;
    --shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.7;
  padding-top: 70px;
}

img {
  max-width: 100%;
  display: block;
}

h2 {
  font-size: 2.5rem;
  color: var(--rose);

}

@media (max-width: 830px) {
  h2 {
    font-size: 2rem;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #f9f3f0 0%, #f0e4dd 100%);
  min-height: 95vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 5rem 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
align-items: flex-start;
}

.hero-text {
  padding: 20px 0;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 800;
}

.highlight {
  color: var(--rose);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(216, 112, 112, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--gray-dark);
  margin-bottom: 35px;
  max-width: 500px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.cta-primary {
  background: var(--rose);
  color: white;
  box-shadow: 0 4px 15px rgba(216, 112, 112, 0.3);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(216, 112, 112, 0.4);
  background: #d87070;
}

.cta-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.cta-secondary:hover {
  background: rgba(33, 33, 33, 0.05);
  transform: translateY(-3px);
}

.arrow {
  margin-left: 8px;
  transition: transform 0.3s;
}

.cta-primary:hover .arrow {
  transform: translateX(5px);
}

.hero-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 10px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
  font-weight: 500;
}

.feature .icon {
  width: 24px;
  height: 24px;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.phone-mockup {
  position: relative;
  max-width: 250px;
  margin: 0 auto;
  margin-top: 40px;
  transform: translateY(30px);
}

.phone-image {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 10px solid white;
}

@media (max-width: 830px) {
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
  }

  .phone-mockup {
    margin-top: 0;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-features {
    justify-content: center;
    flex-direction: row;
    gap: 10px;
  }

  .feature {
    font-size: 0.7rem;
    gap: 5px;
    padding: 5px 10px;
  }
}

/* Mengapa Pilih Kami */
.why-us {
  padding: 56px 0 44px 0;
  margin-top: 0;
}

.why-us h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}

.why-us-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.why-item {
  flex: 1;
  min-width: 220px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 32px 18px 28px 18px;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
  border: 1.5px solid #f5e9e2;
}

.why-item:hover,
.why-item:focus {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(197, 168, 128, 0.13);
  border-color: var(--rose);
}

.why-item .icon {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  filter: drop-shadow(0 2px 6px #f5e9e2);
}

.why-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.2px;
}

.why-item p {
  color: #7a6a5a;
  font-size: .9rem;
  margin: 1.5rem;
  line-height: 1.6;
  text-align: justify;
}

.why-item ul {
  list-style-type: number;
  margin: 0 1.5rem;
  text-align: start;
  color: #7a6a5a;
  font-size: .9rem;
}

@media (max-width: 830px) {
  .why-us-grid {
    gap: 22px;
  }
  .why-item {
    flex: 0 1 calc(50% - 11px);
    max-width: calc(50% - 11px);
  }
}

@media (max-width: 600px) {
  .why-us {
    padding: 32px 0 18px 0;
  }

  .why-us-grid {
    gap: 16px;
  }
  
  .why-item {
    flex: 0 1 100%;
    max-width: 100%;
  }

  .why-item {
    padding: 22px 10px 18px 10px;
  }
}

.page-content {
  padding: 100px 0 60px;
  min-height: calc(100vh - 160px);
}

.template-gallery {
  padding: 2rem 0;
}

.template-gallery .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.template-gallery h2 {
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 1rem;
}

.template-gallery p {
  text-align: center;
}

/* Filter Buttons */
.filter-buttons {
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn {
  background-color: var(--light-gray);
  border: none;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background-color: var(--gold-light);
}

.filter-btn.active {
  background-color: var(--gold);
  color: white;
}


/* Template Cards */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.template-card {
  background-color: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.template-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.template-img-container {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.template-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.template-card:hover .template-img-container img {
  transform: scale(1.05);
}

.mobile-instruction {
  display: none;
}

.template-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.template-card:hover .template-overlay {
  opacity: 1;
}

.preview-btn {
  background-color: white;
  color: var(--navy);
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.preview-btn:hover {
  background-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.template-info {
  padding: 1.2rem 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.template-meta {
  height: fit-content;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.template-meta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.template-category {
  display: inline-block;
  background-color: var(--gray-light);
  color: var(--gray-dark);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.template-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  flex-wrap: nowrap;
  align-items: center;
}

.current-price {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  align-items: center;
}

.original-price {
  text-decoration: line-through;
  color: var(--gray-dark);
  font-size: 0.85rem;
  opacity: 0.7;
  margin-right: 2px;
}

.discount-badge {
  background-color: var(--rose);
  color: var(--white);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  display: inline-flex;
  align-items: center;
}

.template-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.buy-btn {
  flex: 1;
  background-color: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 5px rgba(197, 168, 128, 0.3);
}

.buy-btn:hover {
  background-color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(44, 62, 80, 0.2);
}


/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 2rem 0;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-btn:hover {
  background-color: var(--light-gray);
}

.pagination-btn.active {
  background-color: var(--gold);
  color: white;
  border-color: var(--gold);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  
  .template-img-container {
    height: 320px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .mobile-instruction {
    display: block;
    width: 100%;
    font-size: .7rem;
    text-align: left;
    padding-left: 1.2rem;
    color: var(--gray-dark);
  }
}

.gallery-cta {
  text-align: center;
  margin-top: 2rem;
  color: var(--gray-dark);
}

.gallery-cta a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.gallery-cta a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose);
  transition: width 0.3s ease;
}

.gallery-cta a:hover {
  color: var(--rose);
}

.gallery-cta a:hover::after {
  width: 100%;
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .template-actions {
    flex-direction: column;
  }
  
  .pagination-btn {
    width: 35px;
    height: 35px;
  }
}

/* Social Proof & Trust */
.social-proof {
  background: var(--gray);
  padding: 5rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.social-proof h2 {
  font-family: 'Playfair Display', serif;
  margin: 0 auto 3rem;
  max-width: 800px;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.testimonials-carousel {
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
  align-items: stretch;
  padding: 1rem 0;
  margin: 0 auto 2rem;
  max-width: 1200px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 2.2rem 1.8rem 1.8rem;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-snap-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(197, 168, 128, 0.2);
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 5rem;
  color: rgba(197, 168, 128, 0.1);
  font-family: serif;
  line-height: 1;
  z-index: 0;
}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.testimonial-img {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.2rem;
  border: 3px solid var(--gold);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.testimonial:hover .testimonial-img {
  transform: scale(1.1);
}

blockquote {
  font-style: italic;
  color: var(--navy);
  margin: 0 0 1.2rem 0;
  position: relative;
  z-index: 1;
  line-height: 1.6;
  font-size: 1rem;
}

.user-name {
  font-size: 1rem;
  color: var(--rose);
  font-weight: 600;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.stats {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.stars {
  color: #FFD700;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.stats span:last-child {
  font-size: 0.9rem;
  color: var(--navy);
  opacity: 0.8;
}

/* Navigation Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(197, 168, 128, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--gold);
  transform: scale(1.2);
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
  .testimonial {
    min-width: 280px;
    max-width: 100%;
    padding: 1.8rem 1.5rem 1.6rem;
  }

  .testimonial::before {
    font-size: 4.5rem;
    top: 0.8rem;
    left: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .social-proof {
    padding: 4rem 1.5rem;
  }

  .social-proof h2 {
    margin-bottom: 2.5rem;
  }

  .testimonials-carousel {
    padding: 1rem 1.5rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    scroll-padding: 0 1.5rem;
  }

  .testimonial {
    min-width: 260px;
    padding: 1.6rem 1.2rem 1.4rem;
  }

  .testimonial::before {
    font-size: 4rem;
    top: 0.6rem;
    left: 1rem;
  }

  .testimonial-img {
    width: 60px;
    height: 60px;
  }

  blockquote {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .social-proof {
    padding: 3.5rem 1rem;
  }

  .social-proof h2 {
    margin-bottom: 2rem;
  }

  .testimonials-carousel {
    padding: 1rem 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
    scroll-padding: 0 1rem;
  }

  .testimonial {
    min-width: 85%;
    padding: 1.5rem 1rem 1.3rem;
  }

  .testimonial::before {
    font-size: 3.5rem;
    top: 0.5rem;
    left: 0.8rem;
  }

  .testimonial-img {
    width: 55px;
    height: 55px;
  }

  blockquote {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .user-name {
    font-size: 0.95rem;
  }

  .stars {
    font-size: 1.1rem;
  }

  .stats span:last-child {
    font-size: 0.85rem;
  }
}

/* Features Section */
.features-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
  position: relative;
  overflow: hidden;
}

.features-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d8a39d, #c5a880);
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(216, 163, 157, 0.1) 0%, rgba(197, 168, 128, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #d8a39d 0%, #c5a880 100%);
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotate(10deg) scale(1.1);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 2;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
  position: relative;
  display: inline-block;
}

.feature-card h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #d8a39d, #c5a880);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.feature-card:hover h3::after {
  width: 60px;
}

.feature-card p {
  color: #666;
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

/* Animation for feature cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .feature-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* Add some decorative elements */
.features-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: linear-gradient(135deg, rgba(216, 163, 157, 0.1) 0%, rgba(197, 168, 128, 0.1) 100%);
  animation: float 15s ease-in-out infinite;
}

.features-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: linear-gradient(135deg, rgba(197, 168, 128, 0.1) 0%, rgba(216, 163, 157, 0.1) 100%);
  animation: float 20s ease-in-out infinite reverse;
  z-index: 0;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  100% {
    transform: translateY(0) rotate(0deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

/* FAQ Section */
.faq-section {
  padding: 4rem 0;
  background-color: var(--light-gray);
}

.faq-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
}

.faq-item {
  background-color: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--gray);

}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  line-height: 1.6;
  color: var(--text-color);
}

.faq-item.active .faq-answer {
  padding: 1.5rem;
}

/* CTA Banner */
.cta-banner {
  background-color: var(--gold-light);
  padding: 3rem 0;
  text-align: center;
  margin: 5rem 0;
  margin-bottom: 30rem;

}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  color: var(--navy);
}

.cta-banner p {
  max-width: 600px;
  margin: 0 auto 1.5rem;
  color: var(--text-color);
}

.cta-btn {
  background-color: var(--gold);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-btn:hover {
  background-color: var(--gold-dark);
}