/* --- Variables & Core Styles --- */
:root {
    --primary-purple: #8e7cc3;
    --romantic-pink: #fce4ec; /* Light pink for gradient */
    --warm-text: #5d4037;
    --soft-white: #ffffff;
    --serif-font: 'Alice', serif;
    --cursive-font: 'Marck Script', cursive;
    --body-font: 'Montserrat', sans-serif;
}

body {
    font-family: var(--body-font);
    color: var(--warm-text);
    margin: 0;
    /* Pink to White Gradient Background */
    background: linear-gradient(180deg, var(--romantic-pink) 0%, var(--soft-white) 100%);
    background-attachment: fixed;
    line-height: 1.8;
}

/* --- Typography Classes --- */
.serif {
    font-family: var(--serif-font);
}

.cursive {
    font-family: var(--cursive-font);
}

h1 {
    font-family: var(--serif-font);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #4a148c; /* Deeper purple for contrast */
}

h2 {
    font-family: var(--serif-font);
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 40px;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 10px;
}

/* --- Layout Adjustments --- */
header {
    padding: 30px 8%;
    background: transparent;
}

.logo {
    font-size: 1.8rem;
    color: var(--primary-purple);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 450px;
    /* Soft organic shape */
    border-radius: 60% 40% 70% 30% / 30% 60% 40% 70%;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.05);
    border: 15px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* --- Education Section --- */
.education {
    padding: 100px 10%;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.edu-item {
    padding: 30px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--romantic-pink);
    border-radius: 20px;
    text-align: center;
    font-family: var(--serif-font);
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    transition: 0.3s;
}

.edu-item:hover {
    background: var(--soft-white);
    transform: translateY(-5px);
}

/* --- Buttons --- */
.main-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background-color: var(--primary-purple);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(142, 124, 195, 0.3);
}

.cta-button {
    text-decoration: none;
    color: var(--warm-text);
    border-bottom: 2px solid var(--primary-purple);
    font-weight: 500;
}

footer {
    text-align: center;
    padding: 50px;
    font-size: 0.9rem;
    color: #9e9e9e;
}
/* --- Pricing & Table Styles --- */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.promo-banner {
    text-align: center;
    color: #c2185b;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.price-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(252, 228, 236, 0.5);
    border: 1px solid var(--romantic-pink);
}

.elegant-table {
    width: 100%;
    border-collapse: collapse;
}

.elegant-table td {
    padding: 18px 0;
    border-bottom: 1px dotted var(--romantic-pink);
    font-family: var(--body-font);
}

.price {
    text-align: right;
    font-family: var(--serif-font);
    font-weight: bold;
    color: var(--primary-purple);
    font-size: 1.2rem;
}

/* --- Certificate Slider --- */
.slider-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.slider-display {
    width: 100%;
    max-width: 500px;
    height: 350px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-btn {
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary-purple);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.slider-btn:hover {
    background: var(--primary-purple);
    color: white;
}

/* --- Subscription Cards --- */
.subscription-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.sub-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--romantic-pink);
}

.sub-card.highlighted {
    background: linear-gradient(135deg, #fff 0%, var(--romantic-pink) 100%);
    border: 2px solid var(--primary-purple);
}

.sub-title {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-purple);
    text-align: center;
}

.sub-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.back-link {
    text-decoration: none;
    color: var(--primary-purple);
    font-size: 1.2rem;
}