/* ------------------------------------
   THEME COLORS
------------------------------------ */
:root {
    --pink: #f8d8e8;
    --softpink: #ffeaf4;
    --rose: #ffb6d5;
    --text: #444;
    --primary: #7b255c;
}

/* ------------------------------------
   RESET
------------------------------------ */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #fff;
    color: var(--text);
}

/* ------------------------------------
   HEADER
------------------------------------ */
header {
    background: #fff;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

header .logo {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary);
    font-family: "DM Sans", Arial, Helvetica, sans-serif;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 500;
}

/* ------------------------------------
   HERO SECTION
------------------------------------ */
.hero {
    text-align: center;
    padding: 40px 20px;
}

.hero-image-container {
    width: 100%;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.hero h1 {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary);
    font-family: serif;
}

.hero p {
    max-width: 600px;
    margin: 15px auto 0;
    line-height: 1.6;
    font-weight: bold;
    font-family: serif;
    font-size: 17px;
    font-style: italic;
}

/* ------------------------------------
   SESSION BOX
------------------------------------ */
.session-box {
    width: 80%;
    margin: 40px auto;
    padding: 40px 25px;
    color: #fff;
    text-align: center;
    background-color: #dc98c2;
    border-radius: 12px;
}

.session-box .btn {
    display: inline-block;
    background: #fff;
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

/* ------------------------------------
   INFO BOX
------------------------------------ */
.info-box {
    width: 85%;
    margin: 50px auto;
    padding: 40px;
    background: var(--softpink);
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.info-box h2 {
    margin-top: 0;
    text-align: center;
    color: var(--primary);
}

.info-box p {
    text-align: center;
    font-family: "DM Sans", Arial, Helvetica, sans-serif;
}

.info-box ul {
    margin-left: 20px;
    line-height: 1.8;
}

/* ------------------------------------
   REVIEWS / CAROUSEL
------------------------------------ */
.reviews-section {
    width: 90%;
    margin: 60px auto;
    text-align: center;
}

.reviews-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 25px;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--softpink);
    padding: 30px 0;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.review-slide {
    min-width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.review-slide img {
    width: 80%;
    max-width: 450px;
    max-height: 90%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--rose);
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    color: white;
}

.prev { left: 10px; }
.next { right: 10px; }

.carousel-dots {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-dots div {
    width: 10px;
    height: 10px;
    background: #d4a3b4;
    border-radius: 50%;
    cursor: pointer;
}

.carousel-dots .active {
    background: var(--primary);
}

/* ------------------------------------
   FAQ SECTION
------------------------------------ */
.faq-section {
    max-width: 800px;
    margin: 50px auto;
    padding: 10px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.faq-question {
    width: 100%;
    padding: 10px 0;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    margin: 0;
    padding: 10px 0;
}

/* ------------------------------------
   FOOTER
------------------------------------ */
.main-footer {
    background: #111;
    color: #eee;
    padding: 50px 0 20px;
    margin-top: 60px;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-container h2,
.footer-container h3 {
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-left,
.footer-middle,
.footer-right {
    flex: 1;
    min-width: 250px;
}

.footer-middle ul,
.footer-right ul {
    padding: 0;
    list-style: none;
}

.footer-middle li,
.footer-right li {
    margin-bottom: 10px;
}

.footer-middle a,
.footer-right a {
    color: #eee;
    text-decoration: none;
    transition: 0.2s;
}

.footer-middle a:hover,
.footer-right a:hover {
    color: #ffcc66;
}

.footer-bottom {
    margin-top: 20px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #aaa;
    border-top: 1px solid #333;
}

/* ------------------------------------
   MEDIA QUERIES
------------------------------------ */
@media (max-width: 768px) {

    header {
        padding: 10px 20px;
    }

    .session-box,
    .info-box,
    .faq-section {
        width: 95%;
        padding: 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    .review-slide img {
        width: 100%;
        max-height: 300px;
    }

    .hero-image-container img {
/* Cleaned and Optimized CSS */
:root {
    --primary: #7a1e6a;
    --text-dark: #333;
    --bg-light: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid #eee;
}

header h1 {
    color: var(--primary);
    font-size: 24px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--primary);
    font-weight: 600;
}

/* HERO IMAGE */
.hero-image-container {
    width: 100%;
    height: 60vh;
    max-height: 700px;
    overflow: hidden;
    border-radius: 10px;
    margin: 20px auto;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

/* HERO TEXT */
.hero-text {
    text-align: center;
    margin: 50px 0;
}

.hero-text h2 {
    color: var(--primary);
    font-size: 40px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 18px;
    font-style: italic;
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    nav ul {
        gap: 15px;
    }

    .hero-image-container {
        height: 40vh;
    }

    .hero-text h2 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }
}