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

:root {
    --primary-color: #8B6F9C;
    --secondary-color: #C4A5D1;
    --accent-color: #E8A87C;
    --dark-purple: #5D4A6C;
    --text-dark: #2C2C2C;
    --text-light: #666;
    --bg-light: #FAF8FC;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Garamond', 'Baskerville', 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-dark);
    overflow-x: hidden;
    letter-spacing: 0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Didot', 'Bodoni MT', 'Playfair Display', 'Georgia', serif;
    line-height: 1.4;
    color: var(--dark-purple);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    letter-spacing: 0.2px;
}

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

.lead {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--text-dark);
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Trebuchet MS', sans-serif;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--dark-purple);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    height: 80px;
    width: auto;
    max-width: 100%;
}

@media (max-width: 768px) {
    .nav-brand .logo {
        height: 60px;
    }

    .navbar {
        padding: 0.75rem 0;
    }
}

@media (max-width: 480px) {
    .nav-brand .logo {
        height: 50px;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Trebuchet MS', sans-serif;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(93, 74, 108, 0.65);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Introduction Section */
.intro {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.profile-image {
    margin: 0 auto 2rem;
    max-width: 600px;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* Intro Profile Image - Claudia with Dog */
.intro-image-wrapper {
    margin: 0 auto 2rem;
    max-width: 700px;
    text-align: center;
}

.intro-profile-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: block;
}

/* Claudia Intro Image - Vivid Filter */
.claudia-intro-image {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    display: block;
    margin-bottom: 2rem;
    filter: contrast(1.2) brightness(1.1) saturate(1.35);
    -webkit-filter: contrast(1.2) brightness(1.1) saturate(1.35);
}

.intro h2 {
    margin-bottom: 1.5rem;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 300;
}

.credentials {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

@media (max-width: 768px) {
    .credentials {
        padding: 1.5rem;
    }

    .credentials h3 {
        font-size: 1.1rem;
    }

    .credentials ul li {
        font-size: 0.95rem;
        padding: 0.4rem 0;
    }
}

.credentials h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.credentials ul {
    list-style: none;
    padding: 0;
}

.credentials ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.credentials ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.benefits h2 {
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.benefit-card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.benefit-card ul {
    list-style: none;
    padding: 0;
}

.benefit-card ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(139, 111, 156, 0.1);
}

.benefit-card ul li:last-child {
    border-bottom: none;
}

.benefit-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Override button colors in benefits section */
.benefits .benefit-card .btn-secondary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.benefits .benefit-card .btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Therapy Image Section */
.therapy-image-section {
    padding: 0;
    background: var(--white);
}

.therapy-hero-image {
    width: 100%;
    height: 600px;
    object-fit: contain;
    display: block;
    background: var(--bg-light);
}

@media (max-width: 768px) {
    .therapy-hero-image {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .therapy-hero-image {
        height: 300px;
    }
}

/* Who We Serve Section - Redesigned */
.who-we-serve-redesigned {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAF8FC 0%, #FFFFFF 50%, #FAF8FC 100%);
    position: relative;
    overflow: hidden;
}

.who-we-serve-redesigned::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(232, 168, 124, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(196, 165, 209, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.serve-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.serve-header h2 {
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
}

.serve-intro {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 2;
    font-style: italic;
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.serve-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(139, 111, 156, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.serve-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.serve-card:hover::before {
    transform: scaleX(1);
}

.serve-card::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(196, 165, 209, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.serve-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 111, 156, 0.25);
    border-color: var(--secondary-color);
}

.serve-card:hover::after {
    bottom: -50px;
    right: -50px;
    transform: scale(1.2);
}

/* Card Color Variations */
.serve-card-primary:hover {
    border-color: var(--primary-color);
}

.serve-card-secondary:hover {
    border-color: var(--accent-color);
}

.serve-card-accent:hover {
    border-color: #E8A87C;
}

.serve-card-warm:hover {
    border-color: var(--secondary-color);
}

.serve-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(139, 111, 156, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.serve-card:hover .serve-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(139, 111, 156, 0.35);
}

.serve-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.serve-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.serve-card:hover h3 {
    color: var(--dark-purple);
}

.serve-card p {
    color: var(--text-dark);
    line-height: 2;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.serve-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.feature-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.serve-card:hover .feature-tag {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.serve-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.serve-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Image Section */
.serve-image-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.serve-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(139, 111, 156, 0.2);
    transition: transform 0.3s ease;
}

.serve-image-wrapper:hover {
    transform: scale(1.02);
}

.serve-feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
}

.serve-message {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-purple) 100%);
    padding: 3rem;
    border-radius: 25px;
    color: var(--white);
    box-shadow: 0 15px 50px rgba(139, 111, 156, 0.25);
    position: relative;
    overflow: hidden;
}

.serve-message::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.message-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.message-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.serve-message h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.serve-message p {
    color: var(--white);
    line-height: 2;
    margin: 0;
    font-size: 1.05rem;
    opacity: 0.95;
}

/* Improved Mobile Touch Targets */
.btn {
    min-height: 44px;
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 968px) {
    img {
        max-width: 100%;
        height: auto;
    }

    section {
        overflow-x: hidden;
    }

    .container {
        overflow-x: hidden;
    }
}

/* Better mobile form inputs */
@media (max-width: 768px) {
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .serve-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .serve-image-section {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .serve-feature-image {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .who-we-serve-redesigned {
        padding: 60px 0;
    }

    .serve-header {
        margin-bottom: 3rem;
    }

    .serve-header h2 {
        font-size: 2.2rem;
    }

    .serve-intro {
        font-size: 1.1rem;
    }

    .serve-card {
        padding: 2.5rem;
    }

    .serve-icon {
        width: 70px;
        height: 70px;
    }

    .serve-icon svg {
        width: 35px;
        height: 35px;
    }

    .serve-card h3 {
        font-size: 1.5rem;
    }

    .serve-feature-image {
        min-height: 300px;
    }

    .serve-message {
        padding: 2.5rem;
    }

    /* Improve card readability on mobile */
    .serve-card p,
    .pillar-card p,
    .benefit-card p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .serve-message h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .serve-card {
        padding: 2rem;
    }

    .serve-icon {
        width: 60px;
        height: 60px;
    }

    .serve-icon svg {
        width: 30px;
        height: 30px;
    }

    .serve-card h3 {
        font-size: 1.3rem;
    }

    .serve-card p {
        font-size: 1rem;
    }

    .serve-message {
        padding: 2rem;
    }

    .message-icon {
        width: 50px;
        height: 50px;
    }

    .message-icon svg {
        width: 25px;
        height: 25px;
    }

    .serve-message h3 {
        font-size: 1.3rem;
    }

    .serve-message p {
        font-size: 1rem;
    }

    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Language of Art Section - Keep for backward compatibility */
.language-of-art {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.text-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.text-content p {
    color: var(--white);
    font-size: 1.1rem;
}

.art-benefits {
    margin: 2rem 0;
}

/* Art Benefits - Keep for backward compatibility on other pages */
.art-benefits {
    margin: 2rem 0;
}

.art-benefits-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    margin: 2rem 0;
    width: 100%;
    max-width: 100vw;
}

.art-benefits-carousel {
    display: flex;
    gap: 1.5rem;
    animation: scrollArtCarousel 35s linear infinite;
    width: fit-content;
}

.art-benefits-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollArtCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-33.333% - 1rem));
    }
}

.art-benefit-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    flex-shrink: 0;
    width: 350px;
    min-height: 180px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.art-benefit-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.art-benefit-item h4 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.art-benefit-item p {
    color: var(--white);
    margin: 0;
    line-height: 1.8;
}

.highlight {
    font-style: italic;
    font-size: 1.15rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin-top: 2rem;
}

.image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* Approach Section - Redesigned */
.approach-redesigned {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAF8FC 0%, #F5F0F8 50%, #FAF8FC 100%);
    position: relative;
    overflow: hidden;
}

.approach-redesigned::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(196, 165, 209, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(232, 168, 124, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.approach-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.approach-header h2 {
    margin-bottom: 1rem;
}

.approach-header .section-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    font-style: italic;
}

/* Primary Pillars */
.approach-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.pillar-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF8FC 100%);
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(139, 111, 156, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.pillar-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(196, 165, 209, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    transition: all 0.5s ease;
}

.pillar-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(139, 111, 156, 0.3);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-card:hover::after {
    transform: translate(20%, -20%) scale(1.2);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(139, 111, 156, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 12px 35px rgba(139, 111, 156, 0.4);
}

.pillar-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.pillar-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.pillar-card:hover h3 {
    color: var(--dark-purple);
}

.pillar-card p {
    color: var(--text-dark);
    line-height: 2;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

/* Supporting Cards */
.approach-supporting {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.supporting-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(139, 111, 156, 0.12);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
    position: relative;
}

.supporting-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    transition: height 0.4s ease;
}

.supporting-card:hover {
    transform: translateX(8px);
    box-shadow: 0 12px 40px rgba(139, 111, 156, 0.2);
}

.supporting-card:hover::before {
    height: 100%;
}

.supporting-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(139, 111, 156, 0.25);
    transition: all 0.3s ease;
    font-family: 'Didot', 'Bodoni MT', 'Playfair Display', 'Georgia', serif;
}

.supporting-card:hover .supporting-number {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(139, 111, 156, 0.35);
}

.supporting-content h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.supporting-card:hover .supporting-content h4 {
    color: var(--dark-purple);
}

.supporting-content p {
    color: var(--text-dark);
    line-height: 1.9;
    margin: 0;
    font-size: 1.05rem;
}

/* Responsive Design for Approach Section */
@media (max-width: 968px) {
    .approach-pillars {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .approach-supporting {
        grid-template-columns: 1fr;
    }

    .pillar-card {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .approach-redesigned {
        padding: 60px 0;
    }

    .approach-header {
        margin-bottom: 3rem;
    }

    .pillar-card {
        padding: 2.5rem;
    }

    .pillar-icon {
        width: 70px;
        height: 70px;
    }

    .pillar-icon svg {
        width: 35px;
        height: 35px;
    }

    .pillar-card h3 {
        font-size: 1.5rem;
    }

    .supporting-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }

    .supporting-number {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }

    .supporting-content h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .pillar-card {
        padding: 2rem;
    }

    .pillar-icon {
        width: 60px;
        height: 60px;
    }

    .pillar-icon svg {
        width: 30px;
        height: 30px;
    }

    .pillar-card h3 {
        font-size: 1.3rem;
    }

    .pillar-card p {
        font-size: 1rem;
    }

    .supporting-card {
        padding: 1.8rem;
    }

    .supporting-number {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* Old Approach Section - Keep for backward compatibility */
.approach {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.approach h2 {
    margin-bottom: 1rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.approach-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: left;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.approach-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.approach-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Story Section */
.story {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    background-image: url('images/abstract-coral-art-painting.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .story-content {
        text-align: left;
    }

    .story h2 {
        text-align: center;
    }
}

.story h2 {
    margin-bottom: 3rem;
    text-align: center;
    color: var(--dark-purple);
}

blockquote {
    background: rgba(250, 248, 252, 0.95);
    padding: 2.5rem;
    margin: 2rem 0;
    border-left: 5px solid var(--accent-color);
    border-radius: 10px;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.9;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(139, 111, 156, 0.15);
}

@media (max-width: 768px) {
    blockquote {
        padding: 1.75rem;
        margin: 1.5rem 0;
        font-size: 1.05rem;
        line-height: 1.8;
        border-left-width: 4px;
    }
}

@media (max-width: 480px) {
    blockquote {
        padding: 1.5rem;
        margin: 1.25rem 0;
        font-size: 1rem;
        line-height: 1.7;
    }
}

blockquote p {
    color: var(--text-dark);
    margin: 0;
}

/* Practical Section */
.practical {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.practical h2 {
    margin-bottom: 3rem;
}

.practical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.practical-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: left;
    box-shadow: var(--shadow);
    position: relative;
    padding-left: 5rem;
}

.practical-number {
    position: absolute;
    left: 2rem;
    top: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.practical-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.practical-item p {
    color: var(--text-dark);
}

/* Section Dividers & Visual Hierarchy */
.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.intro h2::after,
.benefits h2::after,
.approach h2::after,
.practical h2::after,
.story h2::after,
.gallery h2::after,
.testimonials h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* Improved spacing and flow */
section {
    position: relative;
}

section + section {
    border-top: 1px solid rgba(139, 111, 156, 0.08);
}

/* Alternating section backgrounds for better visual rhythm */
section:nth-of-type(odd) {
    position: relative;
}

/* Enhanced section transitions */
section {
    scroll-margin-top: 80px;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.gallery h2 {
    margin-bottom: 3rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 968px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Therapy dog image - show full lady */
.gallery-therapy-dog {
    object-fit: contain;
    object-position: center;
    background: var(--bg-light);
    height: 300px !important;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAF8FC 0%, #F0E8F5 50%, #FAF8FC 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(196, 165, 209, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(232, 168, 124, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials h2 {
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonials .section-intro {
    position: relative;
    z-index: 1;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    font-style: italic;
}

/* Testimonials Carousel */
.testimonials-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    margin-top: 3rem;
    width: 100%;
    max-width: 100vw;
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    animation: scrollCarousel 40s linear infinite;
    width: fit-content;
}

.testimonials-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-33.333% - 1.333rem));
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF8FC 100%);
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(139, 111, 156, 0.15);
    text-align: left;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 400px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    flex-shrink: 0;
    width: 400px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card::after {
    content: '❝';
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 80px;
    color: var(--secondary-color);
    opacity: 0.12;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 111, 156, 0.25);
    border-color: transparent;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover::after {
    opacity: 0.25;
    transform: scale(1.1) rotate(-5deg);
}

.testimonial-card p {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 2.1;
    font-size: 1.15rem;
    flex-grow: 1;
    font-weight: 400;
    position: relative;
    z-index: 1;
    letter-spacing: 0.3px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 2rem;
    border-top: none;
    position: relative;
}

.testimonial-author::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color), transparent);
    border-radius: 2px;
}

.testimonial-author::after {
    content: '';
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(139, 111, 156, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover .testimonial-author::after {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(139, 111, 156, 0.35);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    display: block;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-author strong {
    color: var(--dark-purple);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    opacity: 0.9;
    display: block;
}



/* Final Message Section */
.final-message {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

.message-content {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .final-message {
        padding: 50px 0;
    }

    .final-message h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .final-message p {
        font-size: 1rem;
    }

    .final-message .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .final-message {
        padding: 40px 0;
    }

    .final-message h2 {
        font-size: 1.3rem;
    }
}

.final-message h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.final-message p {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.final-message .btn {
    margin-top: 1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact .section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-info h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.contact-method h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-method p {
    margin: 0;
    color: var(--text-dark);
}

.contact-method a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--accent-color);
}

/* Contact Form */
.contact-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-purple);
    font-weight: 600;
    font-family: 'Trebuchet MS', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--dark-purple);
    color: var(--white);
    padding: 3rem 0 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-logo img {
        height: 60px;
    }

    .footer-text p {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo img {
    height: 80px;
    width: auto;
}

.footer-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 0.5rem 0;
        box-shadow: var(--shadow-lg);
        display: none;
        gap: 0;
        z-index: 1000;
        max-height: calc(100vh - 100px);
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0;
        border-bottom: 1px solid rgba(139, 111, 156, 0.1);
    }
    
    .nav-menu li a {
        display: flex;
        align-items: center;
        padding: 1.2rem 1rem;
        min-height: 48px;
        -webkit-tap-highlight-color: rgba(139, 111, 156, 0.1);
        touch-action: manipulation;
        font-size: 1.05rem;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .about-grid,
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .benefits-grid,
    .practical-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .gallery-item img {
        height: auto;
        max-height: 350px;
        width: 100%;
        object-fit: cover;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    /* Better mobile typography */
    body {
        font-size: 16px;
        line-height: 1.7;
    }

    h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    h3 {
        font-size: 1.25rem;
        line-height: 1.4;
    }

    p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .hero {
        min-height: 450px;
        padding: 20px 0;
    }

    .hero h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons .btn {
        padding: 12px 28px;
        font-size: 1rem;
    }

    section {
        padding: 50px 0;
    }

    .container {
        padding: 0 16px;
    }

    .about-image img {
        height: 350px;
    }

    /* Mobile adjustments for intro profile image */
    .intro-image-wrapper {
        max-width: 100%;
        margin: 0 auto 1.5rem;
    }

    .intro-profile-image {
        max-height: 300px;
        border-radius: 12px;
        object-position: center top;
    }

    /* Better section intro on mobile */
    .intro .lead {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .intro h2,
    .about h2,
    .benefits h2,
    .testimonials h2 {
        margin-bottom: 1rem;
    }

    /* Art Benefits Carousel Mobile */
    .art-benefits-carousel {
        animation-duration: 45s;
    }

    .art-benefit-item {
        width: 320px;
        min-height: 170px;
        padding: 1.8rem;
    }

    .art-benefit-item h4 {
        font-size: 1.2rem;
    }

    .art-benefit-item p {
        font-size: 0.95rem;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-method {
        padding: 1.5rem;
    }

    .contact-method h4 {
        font-size: 1.1rem;
    }

    .contact-method p {
        font-size: 1rem;
    }

    .contact-method a {
        word-break: break-word;
    }

    /* Better mobile spacing for cards */
    .benefits-grid,
    .practical-grid,
    .family-benefits-grid {
        gap: 1.5rem;
    }

    .practical-item {
        padding: 2rem;
        padding-top: 5rem;
        padding-left: 2rem;
    }

    .practical-number {
        left: 50%;
        transform: translateX(-50%);
        top: 1.5rem;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-card {
        padding: 2rem;
    }

    .gallery-item img {
        height: 250px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-carousel {
        animation-duration: 50s;
    }

    .testimonial-card {
        padding: 3rem 2.5rem;
        border-radius: 22px;
        width: 350px;
        min-height: 380px;
    }

    .testimonial-card::after {
        font-size: 70px;
        top: 1.5rem;
        right: 1.5rem;
    }

    .testimonial-card p {
        font-size: 1.08rem;
        line-height: 2;
        margin-bottom: 2rem;
        color: var(--text-dark);
        font-weight: 400;
    }

    .testimonial-author {
        padding-top: 1.8rem;
        margin-top: 1.5rem;
    }

    .testimonial-author::after {
        width: 45px;
        height: 45px;
    }

    .testimonial-author strong {
        font-size: 1.15rem;
    }

    .testimonial-author span {
        font-size: 0.88rem;
    }
}

/* Family Benefits Section */
.family-benefits {
    padding: 80px 0;
    background: var(--bg-light);
}

.family-benefits h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.family-benefits .section-intro {
    text-align: center;
}

.family-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.family-benefit-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

.family-benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.family-benefit-item p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Practical Tips Section */
.practical-tips {
    padding: 80px 0;
    background: var(--white);
}

.practical-tips h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.practical-tips .section-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.tip-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
    padding-top: 4rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tip-number {
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.tip-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.tip-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Getting Started / Activities Section */
.getting-started {
    padding: 80px 0;
    background: var(--bg-light);
}

.getting-started h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.activity-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--accent-color);
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.activity-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.activity-card p {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Responsive styles for new sections */
@media (max-width: 968px) {
    .family-benefits-grid,
    .tips-grid,
    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tip-card {
        padding-top: 2rem;
        padding-left: 5rem;
    }

    .tip-number {
        left: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .family-benefit-item,
    .tip-card,
    .activity-card {
        padding: 2rem;
    }

    .tip-card {
        padding-top: 5rem;
        padding-left: 2rem;
    }

    .tip-number {
        left: 50%;
        top: 1.5rem;
        transform: translateX(-50%);
    }
}

/* Education Background Section - Redesigned with Timeline */
.education-background {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAF8FC 0%, #F5F0F8 50%, #FAF8FC 100%);
    position: relative;
    overflow: hidden;
}

/* Fade-up animation keyframes */
@keyframes fadeUpEducation {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Initial visible state for education cards - animation is progressive enhancement */
.featured-card,
.credential-item,
.experience-summary {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease-out;
}

/* Animation classes - optional progressive enhancement */
.featured-card.fade-up-animate {
    animation: fadeUpEducation 0.8s ease-out forwards;
}

.credential-item.fade-up-animate {
    animation: fadeUpEducation 0.7s ease-out forwards;
}

.experience-summary.fade-up-animate {
    animation: fadeUpEducation 0.9s ease-out forwards;
}

/* Staggered animation delays for featured cards - optional */
.featured-card:nth-child(1).fade-up-animate {
    animation-delay: 0.1s;
}

.featured-card:nth-child(2).fade-up-animate {
    animation-delay: 0.3s;
}

/* Staggered animation delays for credential items - optional */
.credential-item:nth-child(1).fade-up-animate {
    animation-delay: 0.5s;
}

.credential-item:nth-child(2).fade-up-animate {
    animation-delay: 0.6s;
}

.credential-item:nth-child(3).fade-up-animate {
    animation-delay: 0.7s;
}

.credential-item:nth-child(4).fade-up-animate {
    animation-delay: 0.8s;
}

.credential-item:nth-child(5).fade-up-animate {
    animation-delay: 0.9s;
}

.credential-item:nth-child(6).fade-up-animate {
    animation-delay: 1s;
}

/* Experience summary appears last - optional */
.experience-summary.fade-up-animate {
    animation-delay: 1.1s;
}

.education-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(196, 165, 209, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(232, 168, 124, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.education-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.education-header h2 {
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-purple);
}

.education-header .section-intro {
    font-size: 1.25rem;
    color: var(--text-light);
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
}

.education-content {
    position: relative;
    z-index: 1;
}

/* Featured Credentials - Primary Certifications */
.featured-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

/* Timeline connector between featured cards */
.featured-credentials::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 80%;
    background: linear-gradient(180deg, transparent, var(--secondary-color), transparent);
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.featured-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAF8FC 100%);
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(139, 111, 156, 0.18);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    background-clip: padding-box;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.featured-card:hover::before {
    opacity: 1;
}

.featured-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(139, 111, 156, 0.3);
}

.credential-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(139, 111, 156, 0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.credential-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    opacity: 0.3;
    filter: blur(8px);
    z-index: -1;
    transition: opacity 0.4s ease;
}

.featured-card:hover .credential-icon {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 12px 35px rgba(139, 111, 156, 0.45);
}

.featured-card:hover .credential-icon::after {
    opacity: 0.5;
}

.credential-icon svg {
    width: 42px;
    height: 42px;
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.featured-card h3 {
    color: var(--dark-purple);
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.featured-card:hover h3 {
    color: var(--primary-color);
}

.featured-card p {
    color: var(--text-dark);
    line-height: 2;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.credential-badge {
    display: inline-block;
    padding: 0.65rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: var(--white);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(139, 111, 156, 0.3);
    transition: all 0.3s ease;
}

.featured-card:hover .credential-badge {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 111, 156, 0.4);
}

/* Supporting Credentials Grid - Timeline Style */
.supporting-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    padding-left: 2rem;
}

/* Timeline line */
.supporting-credentials::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    opacity: 0.4;
}

.credential-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 18px;
    box-shadow: 0 6px 25px rgba(139, 111, 156, 0.12);
    display: flex;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid transparent;
    position: relative;
}

/* Timeline dot */
.credential-item::before {
    content: '';
    position: absolute;
    left: -2.9rem;
    top: 2.5rem;
    width: 14px;
    height: 14px;
    background: var(--white);
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(139, 111, 156, 0.15);
    transition: all 0.3s ease;
    z-index: 1;
}

.credential-item:hover {
    transform: translateX(10px);
    border-left-color: var(--accent-color);
    box-shadow: 0 10px 35px rgba(139, 111, 156, 0.2);
}

.credential-item:hover::before {
    background: var(--primary-color);
    border-color: var(--accent-color);
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(139, 111, 156, 0.25);
}

.credential-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(139, 111, 156, 0.25);
    transition: all 0.3s ease;
    font-family: 'Didot', 'Bodoni MT', 'Playfair Display', 'Georgia', serif;
}

.credential-item:hover .credential-number {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(139, 111, 156, 0.35);
}

.credential-content h4 {
    color: var(--dark-purple);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.credential-item:hover .credential-content h4 {
    color: var(--primary-color);
}

.credential-content p {
    color: var(--text-dark);
    line-height: 1.9;
    margin: 0;
    font-size: 1.02rem;
}

/* Experience Summary - Highlighted Stats */
.experience-summary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-purple) 100%);
    padding: 4rem;
    border-radius: 25px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    box-shadow: 0 15px 50px rgba(139, 111, 156, 0.3);
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.experience-summary::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.summary-content {
    position: relative;
    z-index: 1;
}

.summary-content h3 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.summary-content p {
    color: var(--white);
    line-height: 2;
    margin: 0;
    font-size: 1.15rem;
    opacity: 0.98;
}

.summary-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.75rem;
    font-family: 'Didot', 'Bodoni MT', 'Playfair Display', 'Georgia', serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-label {
    color: var(--white);
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Responsive Design for Education Section */
@media (max-width: 968px) {
    .featured-credentials,
    .supporting-credentials {
        grid-template-columns: 1fr;
    }

    .experience-summary {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .summary-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .stat-item {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .education-background {
        padding: 60px 0;
    }

    .education-header {
        margin-bottom: 3rem;
    }

    .featured-card {
        padding: 2.5rem;
    }

    .featured-card h3 {
        font-size: 1.4rem;
    }

    .credential-item {
        flex-direction: column;
        gap: 1rem;
    }

    .credential-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .experience-summary {
        padding: 2.5rem;
    }

    .summary-content h3 {
        font-size: 1.5rem;
    }

    .summary-stats {
        flex-direction: column;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .featured-card,
    .experience-summary {
        padding: 2rem;
    }

    .credential-icon {
        width: 60px;
        height: 60px;
    }

    .credential-icon svg {
        width: 30px;
        height: 30px;
    }

    .featured-card h3 {
        font-size: 1.3rem;
    }

    .summary-content h3 {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

/* Professional Support Redesigned Section */
.professional-support-redesigned {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAF8FC 0%, #FFFFFF 50%, #F5F0F8 100%);
    position: relative;
    overflow: hidden;
}

.professional-support-redesigned::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(93, 74, 108, 0.65);
    z-index: 1;
    pointer-events: none;
}

.support-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.support-header h2 {
    margin-bottom: 1rem;
    font-size: 2.8rem;
    color: var(--white);
    text-shadow: 2px 2px 6px rgba(93, 74, 108, 0.5);
}

.support-header .section-intro {
    font-size: 1.2rem;
    color: var(--white);
    font-style: italic;
    text-shadow: 2px 2px 6px rgba(93, 74, 108, 0.5);
}

/* Support Intro Box */
.support-intro-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(139, 111, 156, 0.3);
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(139, 111, 156, 0.3);
    flex-shrink: 0;
}

.intro-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.intro-text .lead {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 2;
    margin: 0;
    text-shadow: 2px 2px 6px rgba(93, 74, 108, 0.5);
}

/* Support Features Grid */
.support-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.feature-highlight-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(139, 111, 156, 0.25);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-highlight-card:hover::before {
    transform: scaleX(1);
}

.feature-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(139, 111, 156, 0.35);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.25);
}

.feature-highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(139, 111, 156, 0.25);
    transition: all 0.3s ease;
}

.feature-highlight-card:hover .feature-highlight-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(139, 111, 156, 0.35);
}

.feature-highlight-icon svg {
    width: 35px;
    height: 35px;
    color: var(--white);
}

.feature-highlight-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 2px 2px 6px rgba(93, 74, 108, 0.5);
}

.feature-highlight-card p {
    color: var(--white);
    line-height: 1.9;
    margin: 0;
    font-size: 1.05rem;
    text-shadow: 2px 2px 6px rgba(93, 74, 108, 0.5);
}

/* What to Expect Section */
.what-to-expect-section {
    background: rgba(93, 74, 108, 0.85);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: 25px;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.what-to-expect-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.expect-content {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.expect-content h3 {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.expect-content p {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.9;
    margin: 0;
    opacity: 0.95;
}

.expect-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.expect-item {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.expect-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(5px);
}

.expect-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.expect-icon svg {
    width: 25px;
    height: 25px;
    color: var(--white);
}

.expect-text h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.expect-text p {
    color: var(--white);
    line-height: 1.8;
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Support CTA Box */
.support-cta-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(139, 111, 156, 0.3);
    text-align: center;
    position: relative;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-content {
    margin-bottom: 2.5rem;
}

.cta-content h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 2px 2px 6px rgba(93, 74, 108, 0.5);
}

.cta-content p {
    color: var(--white);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 6px rgba(93, 74, 108, 0.5);
}

.cta-content .btn {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.cta-note {
    padding-top: 2.5rem;
    border-top: 2px solid rgba(139, 111, 156, 0.15);
}

.cta-note p {
    color: var(--white);
    font-size: 1.1rem;
    font-style: italic;
    margin: 0;
    line-height: 1.9;
    text-shadow: 2px 2px 6px rgba(93, 74, 108, 0.5);
}

/* Responsive Design for Professional Support Section */
@media (max-width: 968px) {
    .support-features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expect-list {
        grid-template-columns: 1fr;
    }

    .support-intro-box {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .intro-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .professional-support-redesigned {
        padding: 60px 0;
    }

    .support-header h2 {
        font-size: 2.2rem;
    }

    .support-intro-box {
        padding: 2.5rem;
    }

    .intro-icon {
        width: 70px;
        height: 70px;
    }

    .intro-icon svg {
        width: 35px;
        height: 35px;
    }

    .feature-highlight-card {
        padding: 2.5rem;
    }

    .feature-highlight-icon {
        width: 65px;
        height: 65px;
    }

    .feature-highlight-icon svg {
        width: 32px;
        height: 32px;
    }

    .what-to-expect-section {
        padding: 3rem 2.5rem;
    }

    .expect-content h3 {
        font-size: 1.8rem;
    }

    .expect-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.8rem;
    }

    .expect-icon {
        margin: 0 auto;
    }

    .expect-text {
        text-align: center;
    }

    .support-cta-box {
        padding: 3rem 2.5rem;
    }

    .cta-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .support-header h2 {
        font-size: 1.8rem;
    }

    .support-intro-box {
        padding: 2rem;
    }

    .intro-icon {
        width: 60px;
        height: 60px;
    }

    .intro-icon svg {
        width: 30px;
        height: 30px;
    }

    .intro-text .lead {
        font-size: 1.1rem;
    }

    .feature-highlight-card {
        padding: 2rem;
    }

    .feature-highlight-icon {
        width: 60px;
        height: 60px;
    }

    .feature-highlight-icon svg {
        width: 30px;
        height: 30px;
    }

    .feature-highlight-card h3 {
        font-size: 1.3rem;
    }

    .what-to-expect-section {
        padding: 2.5rem 2rem;
    }

    .expect-content h3 {
        font-size: 1.5rem;
    }

    .expect-content p {
        font-size: 1.05rem;
    }

    .expect-item {
        padding: 1.5rem;
    }

    .expect-icon {
        width: 45px;
        height: 45px;
    }

    .expect-icon svg {
        width: 22px;
        height: 22px;
    }

    .expect-text h4 {
        font-size: 1.1rem;
    }

    .support-cta-box {
        padding: 2.5rem 2rem;
    }

    .cta-content h3 {
        font-size: 1.4rem;
    }

    .cta-content p {
        font-size: 1.05rem;
    }

    .cta-note p {
        font-size: 1rem;
    }
}

/* What to Expect in Life Coaching - Redesigned with Images */
.what-to-expect-coaching {
    padding: 100px 0;
    background: linear-gradient(135deg, #FAF8FC 0%, #F5F0F8 50%, #FAF8FC 100%);
    position: relative;
    overflow: hidden;
}

.what-to-expect-coaching::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(196, 165, 209, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(232, 168, 124, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.expect-coaching-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.expect-coaching-header h2 {
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    color: var(--primary-color);
}

.expect-coaching-header .section-intro {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 2;
    font-style: italic;
}

.expect-coaching-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.expect-coaching-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(139, 111, 156, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.expect-coaching-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.expect-coaching-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(139, 111, 156, 0.3);
}

.expect-coaching-card:hover::before {
    opacity: 1;
}

.expect-coaching-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.expect-coaching-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
    pointer-events: none;
}

.expect-coaching-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.expect-coaching-card:hover .expect-coaching-image img {
    transform: scale(1.1);
}

.expect-coaching-content {
    padding: 2rem;
}

.expect-coaching-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.expect-coaching-card:hover .expect-coaching-content h3 {
    color: var(--dark-purple);
}

.expect-coaching-content p {
    color: var(--text-dark);
    line-height: 1.9;
    margin: 0;
    font-size: 1.05rem;
}

/* Responsive Design for What to Expect Coaching Section */
@media (max-width: 968px) {
    .expect-coaching-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .what-to-expect-coaching {
        padding: 60px 0;
    }

    .expect-coaching-header {
        margin-bottom: 3rem;
    }

    .expect-coaching-header h2 {
        font-size: 2.2rem;
    }

    .expect-coaching-header .section-intro {
        font-size: 1.1rem;
    }

    .expect-coaching-grid {
        grid-template-columns: 1fr;
    }

    .expect-coaching-image {
        height: 200px;
    }

    .expect-coaching-content {
        padding: 1.8rem;
    }

    .expect-coaching-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .expect-coaching-header h2 {
        font-size: 1.8rem;
    }

    .expect-coaching-header .section-intro {
        font-size: 1.05rem;
    }

    .expect-coaching-image {
        height: 180px;
    }

    .expect-coaching-content {
        padding: 1.5rem;
    }

    .expect-coaching-content h3 {
        font-size: 1.2rem;
    }

    .expect-coaching-content p {
        font-size: 1rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    /* Tighter mobile spacing */
    .container {
        padding: 0 12px;
    }

    section {
        padding: 40px 0;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    .lead {
        font-size: 1.1rem;
        line-height: 1.8;
    }

    .section-intro {
        font-size: 1rem;
    }

    /* Hero adjustments */
    .hero {
        min-height: 400px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    /* Card spacing */
    .benefit-card,
    .contact-form,
    .activity-card,
    .family-benefit-item {
        padding: 1.5rem;
    }

    /* Better mobile images */
    .about-image img {
        height: auto;
        max-height: 350px;
        object-fit: cover;
    }

    .about-text {
        padding-top: 1rem;
    }

    .about-text h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    /* Contact grid improvements */
    .contact-methods {
        gap: 1.25rem;
    }

    .contact-method {
        padding: 1.25rem;
    }

    .contact-info h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .contact-info p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

/* Extra small mobile devices */
@media (max-width: 480px) {
    .testimonials-carousel {
        animation-duration: 60s;
    }

    .testimonial-card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
        width: 300px;
        min-height: 350px;
    }

    .testimonial-card::after {
        font-size: 60px;
        top: 1.5rem;
        right: 1.5rem;
    }

    .testimonial-card p {
        font-size: 1.05rem;
        line-height: 1.95;
    }

    .testimonial-author::after {
        width: 40px;
        height: 40px;
    }

    .testimonial-author strong {
        font-size: 1.1rem;
    }

    .testimonial-author span {
        font-size: 0.85rem;
    }

    /* Extra small mobile adjustments for intro profile image */
    .intro-profile-image {
        max-height: 250px;
        border-radius: 10px;
        object-position: center top;
    }

    /* Art Benefits Carousel Extra Small Mobile */
    .art-benefits-carousel {
        animation-duration: 55s;
    }

    .art-benefit-item {
        width: 280px;
        min-height: 160px;
        padding: 1.5rem;
    }

    .art-benefit-item h4 {
        font-size: 1.15rem;
    }

    .art-benefit-item p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}
