:root {
    /* Base colors */
    --primary-color: #5D6CC0; /* Periwinkle blue */
    --secondary-color: #DE6B85; /* Rose pink */
    --dark-blue: #39447a; /* Indigo */
    --light-blue: #B4BBE6; /* Light periwinkle */
    --text-color: #4a4a4a;
    --light-text: #6d6d6d;
    --white: #fff;
    --light-bg: #f8f7fd; /* Pale lavender background */
    
    /* Gradient variables */
    --primary-gradient: linear-gradient(135deg, #5D6CC0 0%, #6E7ECF 100%);
    --secondary-gradient: linear-gradient(135deg, #DE6B85 0%, #E78599 100%);
    --hero-gradient: linear-gradient(180deg, rgba(248,247,253,0.9) 0%, rgba(255,255,255,1) 100%);
    --card-gradient: linear-gradient(135deg, #ffffff 0%, #f8f7fd 100%);
    
    /* Typography settings */
    --heading-font: 'Fraunces', serif;
    --body-font: 'Inter', sans-serif;
    --title-spacing: -0.03em;
    --section-spacing: 100px;
    
    /* Animation durations */
    --transition-fast: 0.2s;
    --transition-medium: 0.4s;
    --transition-slow: 0.6s;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.12);
    --shadow-hover: 0 20px 50px rgba(93, 108, 192, 0.15);
}

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

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    letter-spacing: var(--title-spacing);
    line-height: 1.2;
}

h1 {
    font-weight: 800;
    font-variation-settings: 'wght' 800, 'opsz' 72;
}

h2 {
    font-weight: 700;
    font-variation-settings: 'wght' 700, 'opsz' 36;
}

h3 {
    font-weight: 600;
    font-variation-settings: 'wght' 600, 'opsz' 24;
}

p {
    font-weight: 400;
    font-variation-settings: 'wght' 400;
    margin-bottom: 1.5rem;
}

strong {
    font-weight: 600;
    font-variation-settings: 'wght' 600;
}

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

/* Header Styles */
header {
    background-color: transparent;
    padding: 25px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all var(--transition-medium) ease;
    box-shadow: none;
}

header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 50px;
    transition: all var(--transition-medium) ease;
}

header.scrolled .logo img {
    height: 40px;
}

/* Navigation styles */
nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
    display: flex;
    align-items: center;
    height: 42px;
}

nav ul li a {
    color: var(--dark-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    font-variation-settings: 'wght' 600;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    transition: color var(--transition-medium);
    display: flex;
    align-items: center;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

header.scrolled nav ul li a {
    color: var(--dark-blue);
    text-shadow: none;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-gradient);
    transition: width var(--transition-medium);
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a:hover::after {
    width: 100%;
}

/* Button Styles */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-variation-settings: 'wght' 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all var(--transition-medium);
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    height: 42px; /* Fixed height matching nav items */
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
    text-align: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-gradient);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-medium) ease;
}

.cta-button:hover, 
.cta-button:focus {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    outline: none;
    border-color: var(--secondary-color);
}

.cta-button:hover::before,
.cta-button:focus::before {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.cta-button.secondary::before {
    background: var(--secondary-gradient);
    transform: scaleX(0);
}

.cta-button.secondary:hover,
.cta-button.secondary:focus {
    color: var(--white);
    border-color: var(--secondary-color);
}

/* Additional specific styling for nav CTA button */
nav ul li a.cta-button {
    padding: 0 24px;
    bottom: 0;
    margin: 0;
    color: var(--white);
    text-shadow: none;
    background: var(--primary-gradient);
}

nav ul li a.cta-button::after {
    content: none;
}

nav ul li a.cta-button:hover {
    color: var(--white);
    border-color: var(--secondary-color);
}

/* Override any styles that might be applied to the button when header is scrolled */
header.scrolled nav ul li a.cta-button {
    color: var(--white);
    background: var(--primary-gradient);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-gradient);
    margin-top: 0;
    text-align: center;
    overflow: hidden;
    padding: 0; /* Remove padding and use min-height instead */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(180, 187, 230, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 60%, rgba(222, 107, 133, 0.1) 0%, transparent 60%);
}

/* Hero content needs to be vertically centered */
.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    padding: 120px 20px 0; /* Add top padding to account for header */
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 5px;
    line-height: 1.1;
    color: var(--dark-blue);
    font-weight: 800;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s var(--transition-medium) forwards;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(222, 107, 133, 0.1);
    filter: blur(20px);
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.floating-element.el-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element.el-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    background: rgba(93, 108, 192, 0.08);
    animation-delay: 2s;
}

.floating-element.el-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    background: rgba(222, 107, 133, 0.05);
    animation-delay: 1s;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

.journey-tagline {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-weight: 400;
    font-variation-settings: 'wght' 400, 'opsz' 36, 'ital' 1;
    letter-spacing: 1px;
    font-style: italic;
    position: relative;
    display: inline-block;
    padding: 0 10px;
    animation: fadeInUp 1s 0.2s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    text-shadow: 0 0 1px rgba(222, 107, 133, 0.3);
    transition: all var(--transition-medium) ease;
}

.journey-tagline:hover {
    text-shadow: 0 0 8px rgba(46, 163, 163, 0.6);
}

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

.journey-tagline::before, .journey-tagline::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--teal);
    top: 50%;
    transform: translateY(-50%);
    animation: expandLine 1.2s ease-out forwards;
    animation-delay: 0.5s;
}

.journey-tagline::before {
    left: -30px;
}

.journey-tagline::after {
    right: -30px;
}

@keyframes expandLine {
    to {
        width: 30px;
    }
}

.journey-tagline::before {
    left: -30px;
}

.journey-tagline::after {
    right: -30px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    color: var(--light-text);
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.client-avatars {
    display: flex;
    margin-right: 15px;
}

.client-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -15px;
    object-fit: cover;
}

.client-avatars img:first-child {
    margin-left: 0;
}

.trust-message {
    text-align: left;
}

.stars {
    color: #FFD700;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.trust-message p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.hero-disclaimer {
    font-size: 14px;
    color: var(--light-text);
    margin-top: 15px;
}

.hero-content .cta-button {
    padding: 15px 30px;
    font-size: 16px;
    height: auto;
    box-shadow: 0 5px 15px rgba(93, 108, 192, 0.2);
}

/* Hero Image Section */
.hero-image-section {
    padding: 0 0 80px;
    background-color: var(--white);
}

.coach-image-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.coach-image {
    width: 100%;
    display: block;
    height: auto;
    border-radius: 10px;
}

.quote-container {
    text-align: center;
    max-width: 800px;
    margin: 30px auto 0;
    padding: 0 20px;
}

.quote-container h2 {
    color: var(--dark-blue);
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-style: italic;
}

.quote-container p {
    color: var(--secondary-color);
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .coach-image-container {
        max-width: 100%;
        border-radius: 6px;
    }
    
    .quote-container {
        padding: 0 15px;
    }
    
    .quote-container h2 {
        font-size: 22px;
    }
    
    .quote-container p {
        font-size: 14px;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--light-text);
}

.about-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.secondary-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s;
}

.secondary-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.testimonial-section.teal {
    background-color: var(--primary-color);
}

blockquote {
    font-size: 24px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
    position: relative;
    padding: 0 40px;
}

blockquote::before {
    content: '"';
    font-size: 60px;
    position: absolute;
    left: 0;
    top: -20px;
}

blockquote cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
}

/* Challenges Section */
.challenges-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--white);
}

.challenges-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.challenges-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 50px 0;
}

.challenge-card {
    flex: 1;
    padding: 30px;
    background-color: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s;
}

.challenge-card:hover {
    transform: translateY(-5px);
}

.challenge-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.center-button {
    margin-top: 40px;
}

/* Image Gallery Section */
.image-gallery-section {
    display: flex;
    flex-wrap: wrap;
}

.gallery-images {
    display: flex;
    width: 100%;
}

.gallery-images img {
    width: 25%;
    height: 250px;
    object-fit: cover;
}

/* Anti-Procrastination Section */
.anti-procrastination-section {
    padding: 80px 0;
    background-color: var(--white);
}

.two-column {
    display: flex;
    gap: 40px;
}

.left-column {
    flex: 3;
}

.right-column {
    flex: 2;
}

.left-column h2 {
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.book-box {
    background-color: var(--light-blue);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.book-box h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 24px;
}

.book-box p {
    margin-bottom: 30px;
    color: var(--dark-blue);
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.blog-section h2 {
    font-size: 36px;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 40px;
}

.blog-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    flex: 1;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--secondary-color);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
    color: var(--dark-blue);
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 0;
}

.blog-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
    transition: all 0.3s ease;
}

.blog-card:hover h3::after {
    width: 60px;
    background-color: var(--secondary-color);
}

.blog-card p {
    padding: 10px 20px 20px;
    color: var(--light-text);
    flex-grow: 1;
}

.blog-link {
    display: inline-block;
    margin: 0 20px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-link {
    color: var(--secondary-color);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.cta-section .cta-button {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    margin-top: 20px;
    margin-bottom: 25px;
    padding: 15px 30px;
    font-size: 16px;
    letter-spacing: 1px;
}

.cta-section .cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.cta-guarantee {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 25px;
    padding: 0 20px;
    line-height: 1.6;
    display: block;
}

/* Footer Styles */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 40px 0 20px;
    position: relative;
}

footer .container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

footer h3 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

footer p {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.8);
}

.footer-logo img {
    max-width: 130px;
    margin-bottom: 15px;
}

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

footer ul li {
    margin-bottom: 8px;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

footer ul li a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    margin-top: 12px;
    gap: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    border-color: var(--white);
}

.footer-social svg {
    width: 14px;
    height: 14px;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    grid-column: 1 / -1;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 12px;
}

.footer-bottom a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Responsive footer adjustments */
@media (max-width: 768px) {
    footer .container {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

/* Mobile menu button - hidden by default on desktop */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    transition: all 0.3s ease;
    z-index: 1001; /* Ensure button stays above the menu */
}

.mobile-menu-btn.menu-open svg path {
    stroke: var(--primary-color);
}

/* Mobile menu styles */
nav ul.mobile-menu-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    animation: slideDown 0.3s ease forwards;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

nav ul.mobile-menu-active li {
    margin: 0;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(93, 108, 192, 0.1);
}

nav ul.mobile-menu-active li:last-child {
    border-bottom: none;
    padding-top: 20px;
}

nav ul.mobile-menu-active li a {
    width: 100%;
    justify-content: center;
}

nav ul.mobile-menu-active li a.cta-button {
    margin: 0 auto;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .challenges-grid,
    .blog-grid,
    .two-column,
    .value-cards {
        flex-direction: column;
    }
    
    .gallery-images img {
        width: 50%;
    }
    
    nav ul {
        display: none;
    }
    
    /* Show mobile menu button on smaller screens */
    .mobile-menu-btn {
        display: block;
    }
    
    /* Add mobile menu button for future implementation */
    header .container {
        position: relative;
    }
    
    header {
        background-color: rgba(255, 255, 255, 0.95);
        padding: 15px 0;
        box-shadow: var(--shadow-sm);
    }
    
    header.scrolled {
        padding: 10px 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        padding: 100px 0 50px; /* Add some padding for mobile */
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .trust-badges {
        flex-direction: column;
    }
    
    .client-avatars {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .trust-message {
        text-align: center;
    }
    
    .about-buttons {
        flex-direction: column;
    }
    
    .gallery-images img {
        width: 100%;
    }
    
    blockquote {
        font-size: 20px;
        padding: 0 20px;
    }
    
    .value-card {
        margin-bottom: 20px;
    }
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
    position: relative;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.intro-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    font-weight: 300;
}

/* Values Section Styles */
.values-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--light-text);
    font-size: 18px;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    margin-bottom: 20px;
}

.value-item h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Fraunces', serif;
}

.value-item p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-item {
        padding: 20px;
    }
    
    .section-header h2 {
        font-size: 30px;
    }
    
    .section-intro {
        font-size: 16px;
        padding: 0 15px;
    }
}

/* Outcomes Section */
.outcomes-section {
    padding: 80px 0;
    background-color: #f8f8f8;
}

.outcomes-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.outcomes-section p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--light-text);
    text-align: center;
}

.outcomes-list {
    max-width: 800px;
    margin: 30px auto;
}

.outcomes-list ul {
    padding-left: 30px;
}

.outcomes-list li {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 18px;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--white);
    text-align: center;
}

.process-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.process-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: var(--light-text);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 40px 0;
}

.process-step {
    flex: 1;
    background-color: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--primary-color);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background-color: var(--secondary-color);
    transform: scale(1.1);
    border-radius: 12px;
}

.process-step h3 {
    margin-bottom: 15px;
    color: var(--dark-blue);
    font-size: 20px;
    position: relative;
    padding-bottom: 15px;
}

.process-step h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
    transition: all 0.3s ease;
}

.process-step:hover h3::after {
    width: 60px;
    background-color: var(--secondary-color);
}

.process-step p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.7;
}

.process-cta {
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 992px) {
    .process-steps {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .process-step {
        padding: 30px 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Packages Section */
.packages-section {
    padding: 80px 0;
    background-color: var(--white);
}

.packages-section h2 {
    font-size: 36px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--light-text);
    font-size: 18px;
}

.packages-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 40px 0;
}

.package-card {
    flex: 1;
    max-width: 350px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid #f0f0f0;
    border-bottom: 4px solid transparent;
    perspective: 1000px;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--primary-color);
}

.package-card.featured {
    border: 2px solid var(--primary-color);
    border-bottom: 4px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    border-bottom: 4px solid var(--primary-color);
}

.package-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.package-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f0f0;
}

.package-header h3 {
    color: var(--dark-blue);
    font-size: 22px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.package-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 1.5px;
    transition: all 0.3s ease;
}

.package-card:hover .package-header h3::after {
    width: 60px;
    background-color: var(--secondary-color);
}

.package-price {
    color: var(--light-text);
    font-size: 16px;
}

.package-features {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
}

.package-features li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
}

.package-features li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}

/* Packages card toggle pricing */
.card-pricing-toggle {
    margin: 15px auto;
    text-align: center;
    width: 100%;
}

.pricing-toggle-btn {
    background: white;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    padding: 8px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 80%;
    max-width: 250px;
}

.pricing-toggle-btn:hover {
    color: var(--primary-color);
    background-color: rgba(93, 108, 192, 0.1);
}

.pricing-toggle-btn svg {
    width: 14px;
    height: 14px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.pricing-toggle-btn.active svg {
    transform: rotate(180deg);
}

.pricing-options {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
    margin: 0 15px;
}

.pricing-options.active {
    max-height: 600px;
    opacity: 1;
    margin-top: 20px;
    margin-bottom: 20px;
}

.pricing-option {
    padding: 15px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pricing-option:first-child {
    border-top: none;
}

.price-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
}

.session-info {
    font-size: 14px;
    display: block;
    color: var(--light-text);
}

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

.faq-section h2 {
    font-size: 36px;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-gradient);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all var(--transition-medium);
    border-bottom: 4px solid transparent;
    overflow: hidden;
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-bottom: 4px solid var(--primary-color);
}

.faq-item.active {
    border-bottom: 4px solid var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.faq-question {
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-size: 24px;
    position: relative;
    padding-bottom: 15px;
    padding-right: 30px;
    transition: all var(--transition-medium);
    font-weight: 600;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 24px;
    transition: all var(--transition-medium);
    color: var(--primary-color);
    font-weight: 800;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: var(--secondary-color);
}

.faq-question::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 1.5px;
    transition: all var(--transition-medium);
}

.faq-item:hover .faq-question::before {
    width: 60px;
}

.faq-item.active .faq-question::before {
    width: 80px;
    background: var(--secondary-gradient);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium) ease;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-medium) ease;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust based on content length */
    opacity: 1;
    transform: translateY(0);
}

.faq-answer p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 17px;
}

/* Enhanced CTA Section */
.cta-guarantee {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 15px;
}

/* Responsive adjustments for new sections */
@media (max-width: 992px) {
    .problem-columns,
    .process-steps,
    .packages-grid,
    .faq-grid {
        flex-direction: column;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .problem-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .package-card {
        max-width: 100%;
    }
    
    .step-number {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .process-step {
        padding-top: 40px;
    }
}

/* Benefits/Transformation Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(222, 107, 133, 0.05) 0%, rgba(255, 255, 255, 1) 50%, rgba(93, 108, 192, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 40px;
    margin: 60px 0;
    position: relative;
    z-index: 1;
}

.transformation-item {
    display: flex;
    flex-direction: column;
    padding: 40px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
}

.transformation-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--secondary-color);
}

.transformation-icon {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background-color: rgba(222, 107, 133, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.transformation-item h3 {
    font-size: 1.5rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.transformation-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 1.5px;
}

.transformation-item p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 1rem;
}

.transformation-cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

.transformation-cta .cta-button {
    padding: 15px 30px;
    font-size: 16px;
    background: var(--secondary-gradient);
    color: var(--white);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 12px rgba(222, 107, 133, 0.2);
    min-width: 260px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.transformation-cta .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-medium) ease;
}

.transformation-cta .cta-button:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(222, 107, 133, 0.3);
}

.transformation-cta .cta-button:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Responsive Styles for Transformation Section */
@media (max-width: 992px) {
    .transformation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 70px 0;
    }
    
    .transformation-item {
        padding: 30px;
    }
    
    .transformation-icon {
        width: 60px;
        height: 60px;
    }
    
    .transformation-item h3 {
        font-size: 1.3rem;
    }
}

/* SVG icons and other elements containing colors */
.challenge-icon svg path {
    stroke: var(--primary-color);
}

.timeline-line {
    background: linear-gradient(to bottom, rgba(93, 108, 192, 0.2), var(--primary-color), rgba(93, 108, 192, 0.2));
}

.challenge-dot {
    background-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(93, 108, 192, 0.3);
}

.challenge-block:hover .challenge-dot {
    background-color: var(--secondary-color);
    box-shadow: 0 0 0 6px rgba(222, 107, 133, 0.3);
}

/* Problem Section Styles */
.problem-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.problem-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.problem-section h2 {
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.challenges-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 2px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, rgba(93, 108, 192, 0.2), var(--primary-color), rgba(93, 108, 192, 0.2));
}

.challenge-block {
    position: relative;
    width: 100%;
    margin-bottom: 50px;
    display: flex;
}

.challenge-block:nth-child(odd) {
    justify-content: flex-end;
    padding-right: calc(50% + 30px);
    padding-left: 0;
}

.challenge-block:nth-child(even) {
    justify-content: flex-start;
    padding-left: calc(50% + 30px);
    padding-right: 0;
}

.challenge-block:last-child {
    margin-bottom: 20px;
}

.challenge-dot {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(93, 108, 192, 0.3);
}

.challenge-content {
    background-color: white;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    max-width: 450px;
    width: 100%;
}

.challenge-block:nth-child(even) .challenge-content {
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
}

.challenge-block:nth-child(odd):hover .challenge-content {
    transform: translateX(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--secondary-color);
}

.challenge-block:nth-child(even):hover .challenge-content {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-right: 4px solid var(--secondary-color);
}

.challenge-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(93, 108, 192, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.challenge-block:hover .challenge-icon {
    background-color: rgba(222, 107, 133, 0.1);
}

.challenge-content h3 {
    color: var(--dark-blue);
    margin-bottom: 12px;
    font-size: 20px;
    margin-left: 55px;
}

.challenge-content p {
    color: var(--light-text);
    line-height: 1.7;
    margin-left: 55px;
}

.challenges-message {
    text-align: center;
    max-width: 800px;
    margin: 50px auto 20px;
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.challenges-message p {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.challenges-message .cta-button {
    margin-top: 10px;
}

/* Responsive styles for the timeline */
@media (max-width: 992px) {
    .timeline-line {
        left: 24px;
        transform: none;
    }
    
    .challenge-block, 
    .challenge-block:nth-child(odd),
    .challenge-block:nth-child(even) {
        padding-left: 70px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .challenge-dot {
        left: 16px;
        transform: translateX(-50%);
    }
    
    .challenge-content {
        max-width: 100%;
    }
    
    .challenge-block:nth-child(odd):hover .challenge-content,
    .challenge-block:nth-child(even):hover .challenge-content {
        transform: translateX(10px);
        border-left: 4px solid var(--secondary-color);
        border-right: none;
    }
}

@media (max-width: 768px) {
    .challenge-content {
        padding: 20px 15px;
    }
    
    .challenge-block,
    .challenge-block:nth-child(odd),
    .challenge-block:nth-child(even) {
        padding-left: 50px;
    }
    
    .timeline-line {
        left: 19px;
    }
    
    .challenge-dot {
        left: 12px;
        top: 15px;
        width: 16px;
        height: 16px;
    }
    
    .challenge-icon {
        width: 32px;
        height: 32px;
        top: 15px;
        left: 15px;
    }
    
    .challenge-content h3,
    .challenge-content p {
        margin-left: 45px;
    }
}

/* Scroll Progress Indicator */
.scroll-progress-container {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 50vh;
    background-color: rgba(93, 108, 192, 0.1);
    border-radius: 3px;
    z-index: 999;
    display: none; /* Hidden on mobile */
}

.scroll-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-gradient);
    border-radius: 3px;
    transition: height 0.1s ease-out;
}

.scroll-progress-indicator {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scale(1);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--secondary-color);
    transition: transform 0.3s ease;
}

.scroll-progress-indicator:hover {
    transform: translateX(-50%) scale(1.5);
}

@media (min-width: 992px) {
    .scroll-progress-container {
        display: block;
    }
}

/* Testimonial CTA button */
.testimonial-cta .cta-button {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: var(--primary-color);
}

.testimonial-cta .cta-button:hover {
    color: var(--white);
    border-color: var(--secondary-color);
}

.benefits-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.benefits-section .section-header h2 {
    font-size: 42px;
    color: var(--dark-blue);
    margin-bottom: 15px;
    text-align: center;
}

.benefits-section .section-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 20px;
    line-height: 1.6;
    color: var(--light-text);
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(222, 107, 133, 0.05) 0%, rgba(255, 255, 255, 1) 50%, rgba(93, 108, 192, 0.05) 100%);
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 30%, rgba(180, 187, 230, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 80% 60%, rgba(222, 107, 133, 0.1) 0%, transparent 60%);
    z-index: 0;
}

.testimonials-floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.testimonials-floating-element.el-1 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 5%;
    background: rgba(93, 108, 192, 0.08);
    animation-delay: 0s;
}

.testimonials-floating-element.el-2 {
    width: 180px;
    height: 180px;
    top: 20%;
    right: 8%;
    background: rgba(222, 107, 133, 0.07);
    animation-delay: 2s;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-section h2 {
    font-size: 42px;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-slider {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.testimonial-avatar {
    width: 100%;
    margin-bottom: 5px;
}

.testimonial-avatar img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 10px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 16px;
}

/* Button consistency fixes */

/* Package section buttons */
.package-card .cta-button,
.transformation-cta .cta-button,
.process-cta .cta-button,
.challenges-message .cta-button {
    background: var(--primary-gradient);
    border: 2px solid var(--primary-color);
    color: var(--white);
    min-width: 200px;
    justify-content: center;
    margin-top: auto;
    align-self: center;
    width: 100%;
}

.package-card .cta-button:hover,
.transformation-cta .cta-button:hover,
.process-cta .cta-button:hover,
.challenges-message .cta-button:hover,
.cta-section .cta-button:hover,
.testimonial-cta .cta-button:hover {
    border-color: var(--secondary-color);
}

/* Remove border-image from all places it might be used */
.nav ul li a.cta-button,
.package-card .cta-button,
.transformation-cta .cta-button,
.cta-section .cta-button,
.blog-section .cta-button,
.about-section .cta-button {
    border-image: none;
}

/* Fix any hover inconsistencies */
.cta-button:active {
    transform: translateY(0);
}

.testimonial-cta {
    text-align: center;
    margin-top: 40px;
}

.toggle-hidden {
    display: block;
}

.pricing-options .cta-button {
    margin: 25px auto 10px;
    display: block;
    width: 80%;
    max-width: 250px;
}

.pricing-options.active + .toggle-hidden {
    display: none;
} 

/* Privacy Policy Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalFadeIn 0.4s;
}

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

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--light-text);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color var(--transition-fast);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--secondary-color);
    text-decoration: none;
}

.modal-content h2 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-size: 28px;
    padding-right: 40px;
}

.modal-content h3 {
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 10px;
    font-size: 20px;
}

.modal-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-color);
}

.modal-content ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.modal-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Modal responsive styles */
@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        padding: 20px 25px;
        margin: 10% auto;
    }
    
    .modal-content h2 {
        font-size: 24px;
    }
    
    .modal-content h3 {
        font-size: 18px;
    }
}

/* Footer Styles */
footer {
    background-color: var(--light-bg);
    padding: 60px 0 30px;
    color: var(--text-color);
    border-top: 1px solid rgba(93, 108, 192, 0.1);
}

footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
}

footer h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--dark-blue);
}

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

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

footer ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

footer ul li a:hover {
    color: var(--primary-color);
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--light-text);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(93, 108, 192, 0.1);
    color: var(--primary-color);
    transition: all var(--transition-fast);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-social a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(93, 108, 192, 0.1);
    font-size: 14px;
    color: var(--light-text);
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    footer .container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
    }
}

@media (max-width: 576px) {
    footer .container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Newsletter Signup Styles */
.newsletter-signup {
    margin-bottom: 20px;
}

.newsletter-signup h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 18px;
}

.newsletter-signup p {
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.newsletter-form input[type="email"] {
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid rgba(93, 108, 192, 0.3);
    font-family: var(--body-font);
    font-size: 14px;
    transition: all var(--transition-fast);
    width: 100%;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(93, 108, 192, 0.2);
}

.newsletter-button {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-family: var(--body-font);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition-fast);
    width: 100%;
}

.newsletter-button:hover {
    background: var(--secondary-gradient);
    transform: translateY(-2px);
}

.newsletter-disclaimer {
    font-size: 12px;
    color: var(--light-text);
    margin-top: 8px;
    margin-bottom: 0;
}

/* Beehiiv iframe styles - will be used when actual embed is added */
.beehiiv-embed {
    width: 100%;
    max-width: 100%;
    height: 220px;
    border: none;
    border-radius: 8px;
    overflow: hidden;
}