
    *{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            /* NEW VIBRANT PALETTE */
            --primary-color: #34abeb;      /* Deep Vibrant Violet #7c3aed;*/
            --secondary-color: #be2695;    /* Strong Pink/Magenta db2777*/
            --accent-color: #fbbf24;       /* Bright Amber fbbf24*/
            --text-dark: #1e1b4b;          /* Very dark navy/purple */
            --text-light: #4b5563;
            --bg-light: #fff1f2;           /* Soft rose tint background */
            --white: #ffffff;
            --vibrant-gradient: linear-gradient(135deg, #34abeb 0%, #be2695 50%, #f43f5e 100%);
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--bg-light); /* Makes the whole page feel warmer */
        }
        header {
            background: var(--white);
            box-shadow: 0 2px 15px rgba(124, 58, 237, 0.1); /* Tinted shadow */
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: -0.5px;
        }
        .cta-button {
            background: var(--primary-color);
            color: var(--white);
            padding: 0.875rem 2rem;
            border-radius: 50px; /* Rounder for a more modern feel */
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
            box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
        }
        .cta-button:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(219, 39, 119, 0.4);
        }
        .hero {
            background: var(--vibrant-gradient);
            color: var(--white);
            padding: 8rem 0; /* Slightly more breathing room */
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            font-weight: 800;
        }
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            max-width: 760px;
            margin-left: auto;
            margin-right: auto;
        }
        .hero .cta-button {
            background: var(--white);
            color: var(--primary-color);
            font-size: 1.125rem;
            padding: 1.1rem 3rem;
        }
        .qualifications, .offerings, .pricing, .about, .testimonials, .faq {
            padding: 6rem 0;
        }
        .section-title {
            text-align: center;
            font-size: 2.75rem;
            margin-bottom: 3.5rem;
            color: var(--text-dark);
            font-weight: 800;
        }
        .qual-grid, .offerings-grid, .pricing-cards {
            display: grid;
            gap: 2rem;
        }
        .qual-grid {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        }
        .qual-card, .pricing-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            text-align: center;
            border: 1px solid rgba(124, 58, 237, 0.05);
        }
        .qual-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(124, 58, 237, 0.1);
        }
        .qual-card h3 {
            font-size: 1.4rem;
            margin-bottom: 0.75rem;
            color: var(--primary-color);
        }
        .offerings-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            margin-top: 3rem;
        }
        .offering-card {
            padding: 2.5rem;
            border-left: 5px solid var(--secondary-color);
            background: var(--white); /* White cards on tinted background looks cleaner */
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        }
        .offering-card h3 {
            font-size: 1.6rem;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }
        .offering-card li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            list-style: none;
        }
        .offering-card li:before {
            content: "✦"; /* Changed to a star for vibrancy */
            position: absolute;
            left: 0;
            color: var(--secondary-color);
            font-weight: bold;
        }
        .pricing-cards {
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            max-width: 900px;
            margin: 3rem auto 0;
            align-items: center;
        }
        .pricing-card.featured {
            border: 3px solid var(--primary-color);
            transform: scale(1.08);
            z-index: 2;
        }
        .pricing-duration {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-light);
        }
        .pricing-amount {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        .pricing-note {
            color: var(--text-light);
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
        }
        .about-content {
            max-width: 820px;
            margin: 0 auto;
            line-height: 1.9;
            font-size: 1.15rem;
            color: var(--text-light);
            text-align: center;
        }
        .testimonial-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            border-bottom: 4px solid var(--primary-color);
        }
        .testimonial-card p {
            font-style: italic;
            font-size: 1.1rem;
        }
        .faq-item {
            margin-bottom: 2rem;
            background: var(--white);
            padding: 1.5rem;
            border-radius: 12px;
        }
        .faq-item h4 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 0.75rem;
        }
        footer {
            background: var(--text-dark);
            color: var(--white);
            padding: 4rem 0;
            text-align: center;
        }
        footer a {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 700;
        }
        /* Ensure the image is responsive and neat */
.about-image img, .bio-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px; /* Optional: rounds the corners slightly */
    display: block;
}

/* If using Option 2 (The Bio Section) */
.about-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.about-image {
    flex: 1;
    max-width: 300px; /* Adjust this to make the photo smaller/larger */
}

.about-text {
    flex: 2;
}

/* Stack vertically on mobile */
@media (max-width: 768px) {
    .about-flex {
        flex-direction: column;
        text-align: center;
    }
}
/* Container for the two-column layout */
.testimonial-split {
    display: flex;
    flex-wrap: wrap; /* Allows stacking on mobile */
    gap: 40px;       /* Space between testimonials and video */
    align-items: center; /* Vertically centers the text with the video */
    margin-top: 30px;
}

/* Left side takes up 50% or more depending on preference */
.testimonial-list {
    flex: 1;
    min-width: 300px; /* Prevents text from getting too narrow */
}

/* Right side takes up the other half */
.video-side {
    flex: 1;
    min-width: 350px; /* Ensures video has a decent base size */
}

/* The Responsive Video Wrapper */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* Adds a professional lift */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Optional styling for testimonials */
.testimonial-item {
    margin-bottom: 25px;
    border-left: 4px solid --primary-color;
    padding-left: 15px;
}
/* BLOG PAGE SPECIFIC STYLES */

/* Pillars Section */
.pillars {
    padding: 6rem 0;
    background: var(--bg-light);
    text-align: center;
}
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.pillar-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border: 1px solid rgba(124, 58, 237, 0.05);
}
.pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.1);
}
.pillar-card h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.pillar-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.pillar-card a {
    color: var(--white);
    background: var(--primary-color);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(124,58,237,0.4);
    transition: all 0.3s ease;
}
.pillar-card a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219,39,119,0.4);
}

/* Latest Articles Section */
.latest-articles {
    padding: 6rem 2rem;
    background: var(--bg-light);
    max-width: 1200px;
    margin: 0 auto;
}
.latest-articles h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}
.latest-articles ul {
    list-style: none;
}
.latest-articles li {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}
.latest-articles li:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(124,58,237,0.1);
}
.latest-articles li h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}
.latest-articles li p {
    color: var(--text-light);
}

/* Topics / Quick Links Section */
.topics {
    padding: 6rem 2rem;
    background: var(--white);
    text-align: center;
}
.topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.topic-grid h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}
.topic-grid ul {
    list-style: none;
    padding-left: 0;
}
.topic-grid li {
    margin-bottom: 0.75rem;
}
.topic-grid li a {
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.3s;
}
.topic-grid li a:hover {
    color: var(--primary-color);
}

/* About + Coaching CTA Section */
.about-coaching {
    padding: 6rem 2rem;
    background: var(--bg-light);
    text-align: center;
}
.about-coaching h2 {
    font-size: 2.75rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}
.about-coaching p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 820px;
    margin: 0 auto 2rem auto;
}
.about-coaching .btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(124,58,237,0.4);
    transition: all 0.3s ease;
}
.about-coaching .btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(219,39,119,0.4);
}

/* Newsletter Section */
.newsletter {
    padding: 6rem 2rem;
    background: var(--white);
    text-align: center;
}
.newsletter h2 {
    font-size: 2.75rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}
.newsletter p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}
.newsletter input[type="email"] {
    padding: 1rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(124,58,237,0.2);
    width: 280px;
    max-width: 90%;
    margin-right: 1rem;
    font-size: 1rem;
}
.newsletter button {
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
.newsletter button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .pillar-grid, .topic-grid {
        grid-template-columns: 1fr;
    }
}