:root {
--primary-purple: #6B46C1;
--light-purple: #E0E7FF;
--dark-purple: #4C1D95;
--accent-green: #10B981;
--accent-orange: #F59E0B;
--accent-red: #EF4444;
--dark-title : #0C1213;
--dark-subtitle : #0C121399;
}

/* * {
margin: 0;
padding: 0;
box-sizing: border-box;
} */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

body {
font-family: 'Manrope', sans-serif;
}





.section-title {
    text-align: center;
    color: var(--dark-title);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 1rem;
    /* font-family: 'Manrope' ; */
    }
    
    .section-subtitle {
    text-align: center;
    color: var(--dark-subtitle);;
    font-size: 20px;
    font-weight: 400;
    /* font-family: 'Manrope' ; */
    margin-bottom: 3rem;
    }
    
    @media (max-width: 576px) {
    .section-title {
    text-align: center;
    color: var(--dark-title);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 1rem;
    /* font-family: 'Manrope' ; */
    }
    
    .section-subtitle {
    text-align: center;
    color: var(--dark-subtitle);;
    font-size: 16px;
    font-weight: 400;
    /* font-family: 'Manrope' ; */
    margin-bottom: 3rem;
    }
    }


/* ===== NAVBAR STYLES ===== */
.navbar {
background: white;
transition: all 0.4s ease;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
padding: 0.5rem 0;
}

.navbar.navbar-hidden {
transform: translateY(-100%);
}

.navbar.navbar-scrolled {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.navbar-brand img {
height: 40px;
width: auto;
}

.navbar-nav .nav-link {
color: #333;
font-weight: 500;
margin: 0 0.5rem;
transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
color: #3b2d72;
}

.dropdown-menu {
border: none;
box-shadow: 0 8px 25px rgba(0,0,0,0.1);
border-radius: 8px;
margin-top: 0.5rem;
}

.dropdown-item {
padding: 0.75rem 1.5rem;
transition: all 0.3s ease;
}

.dropdown-item:hover {
background-color: #f8f9fa;
color: #3b2d72;
}

.navbar-buttons {
display: flex;
gap: 0.5rem;
}

.btn-outline-primary {
border-color: #3b2d72;
color: #3b2d72;
font-weight: 500;
padding: 0.5rem 1.25rem;
border-radius: 6px;
transition: all 0.3s ease;
}

.btn-outline-primary:hover {
background-color: #3b2d72;
border-color: #3b2d72;
color: white;
}

.btn-login {
background-color: #3b2d72;
color: white;
border: none;
font-weight: 500;
padding: 0.5rem 1.25rem;
border-radius: 6px;
transition: all 0.3s ease;
}

.btn-login:hover {
background-color: #5a44b0;
color: white;
}

/* Mobile navbar adjustments */
@media (max-width: 991px) {
.navbar-nav {
margin-top: 1rem;
padding: 1rem 0;
}

.navbar-buttons {
margin-top: 1rem;
justify-content: center;
}

.navbar-toggler {
border: none;
padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
box-shadow: none;
}
}

/* Hero Section */
/* ===== HERO CAROUSEL STYLES ===== */
.hero-carousel {
position: relative;
overflow: hidden;
}

.hero-carousel .carousel-item {
position: relative;
min-height: 100vh;
}

.hero-carousel .carousel-image {
width: 100%;
height: 100vh;
object-fit: cover;
background-color: #f2f2f2;
}


/* ===== CAROUSEL CAPTION ===== */
.hero-caption {
position: absolute;
top: 30%;
left: 13%;
max-width: 45%;
text-align: left;
color: #000;
text-shadow: none;
z-index: 10;
}

.hero-content h1 {
font-size: 3.5rem;
font-weight: 700;
color: #3b2d72;
margin-bottom: 1.25rem;
line-height: 1.2;
}

.hero-hashtag {
background-color: #3b2d72;
color: #ffffff;
font-size: 2.625rem;
font-weight: 700;
padding: 0.625rem 1.5625rem;
border-radius: 0.625rem;
display: inline-block;
margin-bottom: 1.5625rem;
box-shadow: 0 4px 8px rgba(59, 45, 114, 0.2);
}

.btn-hero {
background-color: #3b2d72;
color: #ffffff;
font-size: 1.125rem;
font-weight: 600;
padding: 0.75rem 1.75rem;
border-radius: 0.5rem;
border: none;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgba(59, 45, 114, 0.3);
}

.btn-hero:hover {
background-color: #5a44b0;
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(59, 45, 114, 0.4);
}

.btn-hero:active {
transform: translateY(0);
}

/* ===== CAROUSEL CONTROLS ===== */
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
background-color: rgba(161, 161, 161, 0.7);
width: 40px;
height: 40px;
border-radius: 50%;
transition: all 0.3s ease;
}

.hero-carousel .carousel-control-prev-icon:hover,
.hero-carousel .carousel-control-next-icon:hover {
background-color: rgba(59, 45, 114, 0.8);
}

/* ===== CAROUSEL INDICATORS ===== */
.hero-carousel .carousel-indicators [data-bs-target] {
background-color: #3b2d72;
width: 12px;
height: 12px;
border-radius: 50%;
margin: 0 4px;
opacity: 0.6;
transition: all 0.3s ease;
}

.hero-carousel .carousel-indicators .active {
background-color: #ffffff;
opacity: 1;
transform: scale(1.1);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large Tablets (≤ 992px) */
@media (max-width: 992px) {
.hero-caption {
top: 15%;
left: 8%;
max-width: 60%;
}

.hero-content h1 {
font-size: 2.8rem;
}

.hero-hashtag {
font-size: 2.2rem;
padding: 0.5rem 1.25rem;
}

.btn-hero {
font-size: 1rem;
padding: 0.625rem 1.5rem;
}
}

/* Tablets (≤ 768px) */
@media (max-width: 768px) {
.hero-carousel .carousel-item {
min-height: 400px;
}

.hero-carousel .carousel-image {
height: 400px;
}

.hero-caption {
top: 12%;
left: 5%;
right: 5%;
max-width: 85%;
}

.hero-content h1 {
font-size: 1.1rem;
margin-bottom: 0.75rem;
}

.hero-hashtag {
font-size: 1.1rem;
padding: 0.4rem 0.8rem;
margin-bottom: 1rem;
}

.btn-hero {
font-size: 0.85rem;
padding: 0.45rem 1rem;
}
}

/* Mobile (≤ 576px) */
@media (max-width: 576px) {
.hero-carousel .carousel-item {
min-height: 320px;
}

.hero-carousel .carousel-image {
height: 320px;
}

.hero-caption {
top: 40%;
left: 4%;
right: 4%;
max-width: 92%;
}

.hero-content h1 {
font-size: 1.1rem;
margin-bottom: 0.75rem;
}

.hero-hashtag {
font-size: 1.1rem;
padding: 0.4rem 0.8rem;
margin-bottom: 1rem;
}

.btn-hero {
font-size: 0.85rem;
padding: 0.45rem 1rem;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
width: 32px;
height: 32px;
z-index: 999;
}

.hero-carousel .carousel-indicators [data-bs-target] {
width: 10px;
height: 10px;
margin: 0 3px;
z-index: 999;
}
}

/* Extra Small Mobile (≤ 480px) */
/* @media (max-width: 480px) {
.hero-carousel .carousel-item {
min-height: 280px;
}

.hero-carousel .carousel-image {
height: 280px;
}

.hero-caption {
top: 6%;
}

.hero-content h1 {
font-size: 1.5rem;
}

.hero-hashtag {
font-size: 1.2rem;
}
} */

/* ===== ANIMATION ENHANCEMENTS ===== */
.hero-content {
animation: fadeInUp 0.8s ease-out;
}

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

.carousel-item.active .hero-content {
animation: fadeInUp 0.8s ease-out;
}


/* Service Section */
.service-section {
padding: 5rem 0;
}



.service-card {
border-radius: 15px;
/* box-shadow: 0 5px 20px rgba(0,0,0,0.1); */
transition: all 0.3s ease;
cursor: pointer;
}

.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-content {
padding: 15px;
}


.service-title {
font-size: 23px;
font-weight: 600;
margin-bottom: 0.8rem;
color: #000;
}

.service-harga {
color: #4B3A6D;
font-size: 20px;
font-weight: 700;
}

@media (max-width: 576px) {
.service-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 0.8rem;
}

.service-harga {
color: #4B3A6D;
font-size: 15px;
font-weight: 700;
}
}

/* Features Section */
.features-section {
position: relative;
width: 100%;
background-size: cover; /* gambar memenuhi */
display: flex; /* kalau mau isi section di tengah */
align-items: center;
justify-content: center;
background-color: #F2F2F2;
padding: 5%;
}


.feature-card {
background: #fff;
border: 4px solid #5B21B6;
border-radius: 15px;
padding: 20px 15px;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 3px 0 0 #4C1D95;
height: 100%;
margin-bottom: 8px;
}

.feature-card:hover {
transform: translateY(-2px);
box-shadow: 0 5px 0 0 #4C1D95;
}


.feature-img {
width: 80px;
height: 80px;
object-fit: contain;
margin-bottom: 15px;
}

.feature-card h6 {
font-size: 19px;
font-weight: 600;
color: #333;
line-height: 1.4;
}


/* Kelas Section */
.kelas-section {
padding: 5rem 0;
}



.kelas-card {
border-radius: 15px;
/* box-shadow: 0 5px 20px rgba(0,0,0,0.1); */
transition: all 0.3s ease;
cursor: pointer;
}

.kelas-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.kelas-content {
padding: 15px;
}


.kelas-title {
font-size: 23px;
font-weight: 600;
margin-bottom: 0.8rem;
}

.kelas-harga {
color: #4B3A6D;
font-size: 20px;
font-weight: 700;
}

@media (max-width: 576px) {
.kelas-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 0.8rem;
}

.kelas-harga {
color: #4B3A6D;
font-size: 15px;
font-weight: 700;
}
}


/* Ajakan */
.ajakan-section {
position: relative;
width: 100%;
background-size: cover;
display: flex;
justify-content: center;
background-color: #F2F2F2;
padding: 5%;
min-height: 70vh; /* biar fleksibel */
height: auto; /* default auto */
}

.section-ajakan {
font-size: 40px;
font-weight: 700;
color: #3B2D56;
text-align: center;
line-height: 1.6;
}

.section-ajakan .highlight {
background: #4A2C7A;
color: #fff;
padding: 4px 8px;
border-radius: 8px;
font-weight: 600;
display: inline-block;
}

@media (min-width: 1200px) {
.ajakan-section {
padding: 6% 10%;
min-height: 90vh; /* tampilan full screen */
}
}

/* Tablet */
@media (max-width: 991px) {

.ajakan-section {
padding: 8% 6%;
min-height: auto;
}

.section-ajakan {
font-size: 32px;
line-height: 1.5;
}

.section-ajakan .highlight {
padding: 3px 6px;
border-radius: 6px;
}
}

/* Mobile */
@media (max-width: 576px) {

.ajakan-section {
padding: 20% 5%;
min-height: auto;
}

.section-ajakan {
font-size: 22px;
line-height: 1.4;
color: #2A1A50;
}

.section-ajakan .highlight {
padding: 2px 5px;
border-radius: 5px;
}
}


/* Testimoni */
.testimonial-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
  }
  
  .testimonial-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .testimonial-header p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
  }
  
  .testimonial-card {
    background: #F2F2F2;
    padding: 25px;
    border-radius: 8px;
    position: relative;
    text-align: left;
    height: 100%;
  }
  
  .testimonial-card .quote {
    font-size: 40px;
    color: #666;
    position: absolute;
    top: 10px;
    left: 15px;
  }
  
  .testimonial-card h4 {
    margin-top: 30px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .testimonial-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
  }
  
  /* Responsive heading */
  @media (max-width: 576px) {
    .testimonial-header h2 {
      font-size: 22px;
    }
    .testimonial-header p {
      font-size: 14px;
    }
  }
  


/* Expert Section */
.expert-section {
    padding: 5rem 0;
    }
    
    
    
    .expert-card {
    border-radius: 15px;
    /* box-shadow: 0 5px 20px rgba(0,0,0,0.1); */
    transition: all 0.3s ease;
    cursor: pointer;
    }
    
    .expert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }
    
    .expert-content {
    padding: 15px;
    }
    
    
    .expert-title {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 0.8rem;
    }
    
    .expert-harga {
    color: #4B3A6D;
    font-size: 20px;
    font-weight: 700;
    }
    
    @media (max-width: 576px) {
    .expert-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0.8rem;
    }
    
    .expert-harga {
    color: #4B3A6D;
    font-size: 15px;
    font-weight: 700;
    }
    }


/* FAQ Section */



.accordion {
    /* max-width: 800px; */
    margin: 0 auto;
}

.accordion-item {
    border: none;
    border-radius: 16px !important;
    margin-bottom: 16px;
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.1); */
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 8px 30px rgba(0,0,0,0.15); */
}

.accordion-button {
    background: #f2f2f2;
    border: none;
    /* padding: 24px 28px; */
    font-size: 18px;
    font-weight: 600;
    color: #333;
    box-shadow: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: #f2f2f2;
    color: #000;
    box-shadow: #f2f2f2;
}

.accordion-button:focus {
    border-color: #f2f2f2 !important;
    /* box-shadow: 0 0 0 0.25rem rgba(90, 79, 207, 0.25); */
}



.accordion-button:not(.collapsed)::after {
    color: #000 !important;
}

.accordion-body {
    background: #f2f2f2;
    /* padding: 0 28px 24px; */
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    border: none;
    padding-bottom: 1px !important;
    padding-top: 12px !important;
}

.accordion-button:not(.collapsed) + .accordion-collapse .accordion-body {
    background: #f2f2f2;
    color: #000;
}

.accordion-collapse {
    border-top: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-container {
        padding: 40px 15px;
    }

    .faq-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .accordion-button {
        font-size: 16px;
        padding: 20px 20px;
    }

    .accordion-body {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .faq-title {
        font-size: 1.8rem;
    }

    .accordion-button {
        font-size: 15px;
        padding: 18px 16px;
    }

    .accordion-body {
        padding: 0 16px 18px;
        font-size: 14px;
    }
}

/* Animation */
.accordion-item {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
  background: #f8f9fa;
  padding: 40px 0 20px;
  font-family: Arial, sans-serif;
  color: #333;
  margin-top: 50px;
}

.footer-col {
  font-size: 14px;
  line-height: 1.7;
}

.footer-logo {
  max-width: 120px;
  margin-bottom: 15px;
  display: block;
}

.footer-col p {
  margin-bottom: 12px;
  color: #555;
}

.footer-col p strong {
  color: #333;
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #333;
}

.footer-socials {
  margin-top: 15px;
  display: flex;
  gap: 8px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 16px;
  color: #333;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-socials a:hover {
  color: #fff;
  background: #4A2C7A;
  border-color: #4A2C7A;
  transform: translateY(-2px);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #555;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  display: block;
}

.footer-col ul li a:hover {
  color: #4A2C7A;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
  color: #666;
}
  

/* Responsive */
@media (max-width: 768px) {


.navbar-collapse {
background: white;
padding: 1rem;
border-radius: 10px;
margin-top: 1rem;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.navbar-buttons {
flex-direction: column;
gap: 0.5rem;
width: 100%;
margin-top: 1rem;
}

.btn-outline-primary,
.btn-login {
width: 100%;
}
}


/* Detail Produk */

/* Style khusus hanya untuk section ini */
.konseling-section {
  /* max-width: 900px; */
  margin: 0 auto;
  padding: 20px;
}

.konseling-section .left-box {
  background: linear-gradient(135deg, #c86b73 0%, #b85861 100%);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.konseling-section .left-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.konseling-section .left-box h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
}

.konseling-section .left-box .hand-icon {
  width: 80px;
  height: 80px;
  background: #f5f5f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  position: relative;
}

.konseling-section .left-box .hand-icon::before {
  content: '✋';
  font-size: 40px;
  color: #c86b73;
}

.konseling-section .left-box .chat-bubble {
  position: absolute;
  top: 20px;
  right: 30px;
  background: #4CAF50;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.konseling-section .right-box {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
}

.konseling-section .right-box h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
}

.konseling-section .rating {
  color: #5a2e91;
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.konseling-section .stars {
  color: #ffa500;
  font-size: 16px;
}

.konseling-section .price {
  font-size: 24px;
  font-weight: bold;
  color: #e74c3c;
  margin-bottom: 25px;
}

.konseling-section .options {
  margin-bottom: 20px;
}

.konseling-section .options label {
  display: block;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #2c3e50;
}

.konseling-section .options .btn-option {
  padding: 10px 18px;
  margin: 4px 8px 4px 0;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.konseling-section .options .btn-option.active {
  background: #5a2e91;
  color: white;
  border-color: #5a2e91;
}

.konseling-section .options .btn-option:hover {
  border-color: #5a2e91;
  color: #5a2e91;
}

.konseling-section .options .btn-option.active:hover {
  background: #4a2577;
  color: white;
}

.konseling-section .qty {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  gap: 12px;
}

.konseling-section .qty label {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

.konseling-section .qty button {
  width: 36px;
  height: 36px;
  border: 2px solid #e0e0e0;
  background: white;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.konseling-section .qty button:hover {
  border-color: #5a2e91;
  color: #5a2e91;
}

.konseling-section .qty input {
  width: 70px;
  text-align: center;
  border: 2px solid #e0e0e0;
  height: 36px;
  border-radius: 6px;
  font-weight: 600;
}

.konseling-section .action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.konseling-section .btn-cart {
  border: 2px solid #5a2e91;
  background: #fff;
  color: #5a2e91;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.konseling-section .btn-cart:hover {
  background: #f8f9fa;
}

.konseling-section .btn-buy {
  background: #5a2e91;
  color: white;
  border: 2px solid #5a2e91;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.konseling-section .btn-buy:hover {
  background: #4a2577;
  border-color: #4a2577;
}

@media (max-width: 768px) {
  .konseling-section .left-box h2 {
      font-size: 24px;
  }
  
  .konseling-section .left-box {
      padding: 30px 20px;
  }
  
  .konseling-section .right-box {
      padding: 20px;
  }
  
  .konseling-section .action-buttons {
      margin-top: 20px;
  }
}

  /* Scoped CSS untuk FAQ dan Reviews */
  .deskripsi-reviews-container * {
    box-sizing: border-box;
}



.deskripsi-reviews-container .faq-section {
    background: #F2F2F2;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
}

.deskripsi-reviews-container .faq-item {
    margin-bottom: 25px;
}

.deskripsi-reviews-container .faq-question {
    font-weight: 700;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 8px;
    cursor: default;
    padding: 8px 0;
}

.deskripsi-reviews-container .faq-answer {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
    line-height: 1.6;
}

.deskripsi-reviews-container .faq-answer strong {
    color: #2c3e50;
    font-weight: 600;
}

.deskripsi-reviews-container .terms-section {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
}

.deskripsi-reviews-container .terms-title {
    font-weight: 700;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.deskripsi-reviews-container .terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deskripsi-reviews-container .terms-list li {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
    position: relative;
    padding-left: 20px;
}

.deskripsi-reviews-container .terms-list li::before {
    content: counter(term-counter) '.';
    counter-increment: term-counter;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 600;
    color: #2c3e50;
}

.deskripsi-reviews-container .terms-list {
    counter-reset: term-counter;
}

.deskripsi-reviews-container .reviews-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.deskripsi-reviews-container .reviews-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.deskripsi-reviews-container .review-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.deskripsi-reviews-container .review-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.deskripsi-reviews-container .review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #5a2e91;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 18px;
    flex-shrink: 0;
}

.deskripsi-reviews-container .review-content {
    flex: 1;
}

.deskripsi-reviews-container .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.deskripsi-reviews-container .review-name {
    font-weight: 700;
    font-size: 16px;
    color: #2c3e50;
}

.deskripsi-reviews-container .review-date {
    font-size: 12px;
    color: #888;
}

.deskripsi-reviews-container .review-rating {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.deskripsi-reviews-container .review-text {
    font-size: 14px;
    color: #555;
    text-align: justify;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .deskripsi-reviews-container {
        padding: 15px;
    }

    .deskripsi-reviews-container .faq-section,
    .deskripsi-reviews-container .terms-section,
    .deskripsi-reviews-container .reviews-section {
        padding: 20px;
    }

    .deskripsi-reviews-container .reviews-title {
        font-size: 20px;
    }

    .deskripsi-reviews-container .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .deskripsi-reviews-container .review-item {
        flex-direction: column;
        gap: 10px;
    }

    .deskripsi-reviews-container .review-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .deskripsi-reviews-container .faq-question {
        font-size: 15px;
    }

    .deskripsi-reviews-container .faq-answer,
    .deskripsi-reviews-container .terms-list li,
    .deskripsi-reviews-container .review-text {
        font-size: 13px;
    }
}