@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Going To Do Great Things';
    src: url('images/goingtodogreatthings.woff') format('woff'),
         url('images/goingtodogreatthings.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Root Variables - Lavender, Rose & Teal Color Scheme */
:root {
    /* New Color Palette */
    --pale-lavender: #E4D4DB;
    --soft-rose: #F5A5B8;
    --mauve: #A67B8C;
    --teal: #1B7A7A;
    --deep-teal: #1A4A47;
    
    /* Maintained for compatibility */
    --deep-ocean: #1A4A47;
    --serene-teal: #1B7A7A;
    --aqua-light: #1B7A7A;
    --sky-blue: #1B7A7A;
    --powder-blue: #E4D4DB;
    
    /* Sunrise Colors - Dawn & Rebirth */
    --sunrise-gold: #F5A5B8;
    --dawn-peach: #E4D4DB;
    --coral-glow: #F5A5B8;
    --soft-lavender: #E4D4DB;
    
    /* Lotus & Light */
    --lotus-pink: #F5A5B8;
    --pure-white: #FFFFFF;
    --soft-cream: #E4D4DB;
    --light-mist: #E4D4DB;
    
    /* Grounding Earth Tones */
    --earth-brown: #A67B8C;
    --soft-sage: #1B7A7A;
    --warm-sand: #E4D4DB;
    
    /* Text & Depth */
    --deep-navy: #1A4A47;
    --soft-gray: #A67B8C;
    --light-text: #1A4A47;
}

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

body {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.8;
    color: var(--deep-teal);
    background: linear-gradient(to bottom, 
        var(--pale-lavender) 0%, 
        var(--soft-rose) 25%, 
        var(--mauve) 50%, 
        var(--teal) 75%, 
        var(--deep-teal) 100%);
    background-attachment: fixed;
}

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

h1, h2, h3, h4 {
    font-family: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 600;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--deep-teal);
    text-align: center;
    font-weight: 600;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--teal);
    font-weight: 600;
}

/* Header & Navigation */
header {
    background: linear-gradient(135deg, 
        var(--pure-white) 0%, 
        var(--pale-lavender) 50%, 
        rgba(245, 165, 184, 0.3) 100%);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(166, 123, 140, 0.2);
    border-bottom: 2px solid var(--soft-rose);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

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

.nav-menu a {
    color: var(--deep-teal);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--deep-teal);
    margin: 4px 0;
    transition: 0.3s;
}

/* Podcast Banner */
.podcast-banner {
    background: linear-gradient(135deg, var(--teal) 0%, var(--deep-teal) 100%);
    padding: 1rem 0;
    margin-top: 90px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(27, 122, 122, 0.3);
    border-bottom: 3px solid var(--soft-rose);
}

.podcast-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.podcast-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.podcast-icon {
    font-size: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.podcast-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.podcast-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--soft-rose);
}

.podcast-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--pure-white);
    letter-spacing: -0.3px;
}

.podcast-pulse {
    color: var(--soft-rose);
    font-size: 1.2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--deep-teal);
    overflow: hidden;
    margin-top: 0;
    background: linear-gradient(135deg, 
        var(--pale-lavender) 0%, 
        var(--soft-rose) 35%, 
        var(--mauve) 70%, 
        var(--teal) 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(228, 212, 219, 0.4) 0%, 
        rgba(245, 165, 184, 0.5) 30%, 
        rgba(166, 123, 140, 0.4) 60%, 
        rgba(27, 122, 122, 0.3) 100%);
    z-index: 1;
    pointer-events: none;
}

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

.hero h1 {
    font-family: 'Going To Do Great Things', cursive;
    font-size: 6.5rem;
    margin-bottom: 1rem;
    color: var(--deep-teal);
    font-weight: normal;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease-out;
    font-weight: 600;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.8rem;
    font-style: normal;
    margin-bottom: 1.5rem;
    color: var(--soft-rose);
    text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1.2s ease-out;
    font-weight: 500;
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1.4s ease-out;
    color: var(--deep-teal);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--deep-teal) 100%);
    color: var(--pure-white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(27, 122, 122, 0.4);
    animation: fadeInUp 1.6s ease-out;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(27, 122, 122, 0.6);
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--teal) 100%);
}

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

/* Mission Section */
.mission {
    padding: 5rem 0;
    background: linear-gradient(to bottom, 
        var(--pale-lavender) 0%, 
        rgba(245, 165, 184, 0.6) 50%, 
        var(--soft-rose) 100%);
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

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

.mission h2 {
    color: var(--deep-teal);
    text-shadow: none;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--deep-teal);
}

.mission-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(27, 122, 122, 0.15);
    border: 3px solid var(--soft-rose);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: linear-gradient(to bottom, 
        var(--soft-rose) 0%, 
        rgba(166, 123, 140, 0.7) 50%, 
        var(--mauve) 100%);
    color: var(--deep-teal);
}

.services h2 {
    color: var(--deep-teal);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--deep-teal);
    line-height: 1.9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--pure-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(27, 122, 122, 0.1);
    border: 2px solid var(--soft-rose);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(27, 122, 122, 0.2);
    border-color: var(--teal);
}

.service-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

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

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

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--deep-teal) 100%);
    color: var(--pure-white);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 12px rgba(27, 122, 122, 0.4);
}

.service-content {
    padding: 2.5rem;
    text-align: center;
}

.service-card h3 {
    color: var(--deep-teal);
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--deep-teal);
    margin-bottom: 2rem;
    min-height: 100px;
}

.service-pricing {
    background: linear-gradient(135deg, 
        var(--pale-lavender) 0%, 
        rgba(245, 165, 184, 0.5) 50%, 
        var(--soft-rose) 100%);
    border: 2px solid var(--mauve);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--soft-rose);
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    font-size: 1rem;
    color: var(--deep-teal);
    font-weight: 500;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0;
}

.service-button {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--deep-teal) 100%);
    color: var(--pure-white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(27, 122, 122, 0.3);
    text-transform: none;
    letter-spacing: 0;
}

.service-button:hover {
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--teal) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27, 122, 122, 0.5);
}

.certifications {
    background: linear-gradient(135deg, 
        var(--pure-white) 0%, 
        var(--pale-lavender) 50%, 
        rgba(245, 165, 184, 0.3) 100%);
    padding: 4rem 3rem;
    border-radius: 15px;
    color: var(--deep-teal);
    max-width: 1100px;
    margin: 0 auto;
    border: 3px solid var(--mauve);
    box-shadow: 0 6px 20px rgba(166, 123, 140, 0.25);
}

.certifications h3 {
    text-align: center;
    color: var(--deep-teal);
    margin-bottom: 1rem;
    font-size: 2rem;
    text-shadow: none;
}

.certifications-intro {
    text-align: center;
    font-size: 1.05rem;
    color: var(--deep-teal);
    font-style: normal;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.cert-card {
    background: linear-gradient(135deg, 
        var(--pale-lavender) 0%, 
        rgba(245, 165, 184, 0.6) 50%, 
        var(--soft-rose) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--mauve);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.cert-card:hover::before {
    opacity: 0;
}

.cert-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(27, 122, 122, 0.2);
}

.cert-card.completed {
    border-color: var(--teal);
}

.cert-card.completed:hover {
    border-color: var(--teal);
}

.cert-card.in-progress {
    border-color: #CCC;
    border-style: dashed;
}

.cert-card.in-progress:hover {
    border-color: #AAA;
    border-style: solid;
}

.cert-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.cert-card.completed .cert-icon {
    color: var(--teal);
    text-shadow: 0 2px 4px rgba(27, 122, 122, 0.3);
}

.cert-card.in-progress .cert-icon {
    color: #999;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cert-card h4 {
    font-size: 1.2rem;
    color: var(--deep-teal);
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 2.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cert-status {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.cert-card.completed .cert-status {
    background: linear-gradient(135deg, var(--teal) 0%, var(--deep-teal) 100%);
    color: var(--pure-white);
    box-shadow: 0 2px 6px rgba(27, 122, 122, 0.4);
}

.cert-card.in-progress .cert-status {
    background: var(--mauve);
    color: var(--pure-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Matrix Section - Soft Jewel Tones */
.matrix {
    padding: 5rem 0;
    background: linear-gradient(to bottom, 
        var(--mauve) 0%, 
        rgba(27, 122, 122, 0.3) 50%, 
        var(--teal) 100%);
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.matrix::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

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

.matrix h2 {
    color: var(--pale-lavender);
    text-shadow: 2px 2px 4px rgba(26, 74, 71, 0.6);
}

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

.matrix-slogan {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--soft-rose);
    text-align: center;
    margin-bottom: 2rem;
    font-style: normal;
    text-shadow: 2px 2px 4px rgba(26, 74, 71, 0.6);
}

.matrix-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--pale-lavender);
}

.matrix-image {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(27, 122, 122, 0.15);
    border: 3px solid var(--soft-rose);
}

.matrix-image img {
    width: 100%;
    display: block;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(to bottom, 
        var(--mauve) 0%, 
        rgba(27, 122, 122, 0.3) 50%, 
        var(--teal) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

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

.testimonials h2 {
    color: var(--pale-lavender);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(26, 74, 71, 0.6);
}

.testimonials-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--pale-lavender);
    line-height: 1.9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--pure-white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(27, 122, 122, 0.1);
    border: 2px solid var(--soft-rose);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(27, 122, 122, 0.2);
    border-color: var(--teal);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--pale-lavender);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
}

.author-info h4 {
    color: var(--deep-teal);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.author-title {
    color: var(--mauve);
    font-size: 0.95rem;
    font-weight: 500;
    font-style: normal;
    margin: 0;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: var(--sunrise-gold);
    font-size: 1.2rem;
}

.testimonial-date {
    color: #999;
    font-size: 0.85rem;
    white-space: nowrap;
    margin-left: 1rem;
    align-self: flex-start;
}

.testimonial-content {
    color: var(--deep-teal);
}

.testimonial-title {
    color: var(--teal);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Testimonials */
@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .testimonials-intro {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .testimonials-grid {
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonial-date {
        margin-left: 0;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .testimonials h2 {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .author-info h4 {
        font-size: 1.1rem;
    }
    
    .author-title {
        font-size: 0.9rem;
    }
    
    .testimonial-title {
        font-size: 1.2rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .star {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(to bottom, 
        var(--teal) 0%, 
        var(--mauve) 50%, 
        var(--pale-lavender) 100%);
}

.contact h2 {
    color: var(--pale-lavender);
    text-shadow: 2px 2px 4px rgba(26, 74, 71, 0.6);
}

.contact-intro {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 3rem;
    color: var(--pale-lavender);
}

/* Book a Service CTA */
.book-service-cta {
    max-width: 700px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, 
        var(--pure-white) 0%, 
        var(--pale-lavender) 50%, 
        rgba(245, 165, 184, 0.4) 100%);
    padding: 3rem 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 24px rgba(166, 123, 140, 0.3);
    border: 3px solid var(--soft-rose);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.book-service-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 165, 184, 0.15) 0%, transparent 70%);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

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

.book-service-content h3 {
    color: var(--deep-teal);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.book-service-content p {
    color: var(--deep-teal);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.book-service-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--soft-rose) 0%, var(--mauve) 100%);
    color: var(--pure-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(245, 165, 184, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-service-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(245, 165, 184, 0.7);
    background: linear-gradient(135deg, var(--mauve) 0%, var(--soft-rose) 100%);
}

/* Contact Divider */
.contact-divider {
    text-align: center;
    margin: 2rem auto 3rem;
    position: relative;
    max-width: 700px;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--pale-lavender), transparent);
}

.contact-divider::before {
    left: 0;
}

.contact-divider::after {
    right: 0;
}

.contact-divider span {
    display: inline-block;
    padding: 0 1.5rem;
    color: var(--pale-lavender);
    font-size: 1rem;
    font-weight: 500;
    font-style: italic;
    background: transparent;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(135deg, 
        var(--pure-white) 0%, 
        var(--pale-lavender) 50%, 
        rgba(245, 165, 184, 0.3) 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(166, 123, 140, 0.25);
    border: 3px solid var(--mauve);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-teal);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #DDD;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 8px rgba(27, 122, 122, 0.3);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--deep-teal) 100%);
    color: var(--pure-white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(27, 122, 122, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(27, 122, 122, 0.5);
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--teal) 100%);
}

/* Footer */
footer {
    background: #2A2A2A;
    color: #FFFFFF;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0.9;
}

.footer-section a:hover {
    color: var(--soft-rose);
    opacity: 1;
}

.wisdom-quote {
    font-style: italic;
    color: #FFFFFF;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--teal) 0%, var(--deep-teal) 100%);
    border-radius: 50%;
    color: var(--pure-white);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(27, 122, 122, 0.3);
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(27, 122, 122, 0.5);
    background: linear-gradient(135deg, var(--soft-rose) 0%, var(--mauve) 100%);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .podcast-banner {
        padding: 0.8rem 0;
    }
    
    .podcast-banner-content {
        gap: 0.8rem;
    }
    
    .podcast-icon {
        font-size: 1.5rem;
    }
    
    .podcast-label {
        font-size: 0.65rem;
    }
    
    .podcast-title {
        font-size: 0.95rem;
    }
    
    .podcast-pulse {
        font-size: 1rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        text-align: center;
        padding: 0.5rem 0;
    }

    .hero h1 {
        font-family: 'Going To Do Great Things', cursive;
        font-size: 3.5rem;
        font-weight: normal;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
    }

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

    .services h2 {
        font-size: 2.2rem;
    }

    .services-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .service-image {
        height: 280px;
    }

    .service-content {
        padding: 2rem 1.5rem;
    }

    .service-card h3 {
        font-size: 1.6rem;
    }

    .service-description {
        font-size: 1rem;
        min-height: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .book-service-cta {
        padding: 2.5rem 2rem;
        margin-bottom: 2.5rem;
    }
    
    .book-service-content h3 {
        font-size: 1.6rem;
    }
    
    .book-service-content p {
        font-size: 1rem;
    }
    
    .book-service-button {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .certifications {
        padding: 3rem 2rem;
    }

    .certifications h3 {
        font-size: 2rem;
    }

    .certifications-intro {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cert-card {
        padding: 1.5rem;
    }

    .cert-icon {
        font-size: 3rem;
    }

    .cert-card h4 {
        font-size: 1.1rem;
        min-height: auto;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .podcast-text {
        gap: 0.1rem;
    }
    
    .podcast-label {
        font-size: 0.6rem;
    }
    
    .podcast-title {
        font-size: 0.85rem;
    }
    
    .hero h1 {
        font-family: 'Going To Do Great Things', cursive;
        font-size: 2.8rem;
        font-weight: normal;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }

    .matrix-slogan {
        font-size: 1.4rem;
    }

    .services h2 {
        font-size: 1.8rem;
    }

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

    .service-image {
        height: 250px;
    }

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

    .service-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        top: 15px;
        right: 15px;
    }

    .price-amount {
        font-size: 1.3rem;
    }

    .service-button {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }

    .certifications {
        padding: 2rem 1.5rem;
    }

    .certifications h3 {
        font-size: 1.7rem;
    }

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

    .cert-icon {
        font-size: 2.5rem;
    }

    .cert-card h4 {
        font-size: 1rem;
    }

    .cert-status {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .book-service-cta {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .book-service-content h3 {
        font-size: 1.4rem;
    }
    
    .book-service-content p {
        font-size: 0.95rem;
    }
    
    .book-service-button {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    .contact-divider {
        margin: 1.5rem auto 2rem;
    }
    
    .contact-divider span {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
}

/* Blog Page Styles */
.blog-intro {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.blog-intro p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--deep-teal);
}

.blog-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, 
        var(--soft-rose) 0%, 
        rgba(166, 123, 140, 0.7) 40%, 
        var(--mauve) 80%, 
        rgba(27, 122, 122, 0.3) 100%);
}

.blog-section h2 {
    color: var(--deep-teal);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-card {
    background: var(--pure-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(27, 122, 122, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid var(--soft-rose);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(27, 122, 122, 0.2);
    border-color: var(--teal);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-category {
    background: linear-gradient(135deg, var(--teal) 0%, var(--deep-teal) 100%);
    color: var(--pure-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.8rem;
}

.blog-date {
    color: #999;
    font-style: normal;
}

.blog-content h3 {
    font-size: 1.3rem;
    color: var(--deep-teal);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 600;
}

.blog-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    color: var(--teal);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.read-more:hover {
    color: var(--deep-teal);
}

/* Blog Categories */
.blog-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    background: linear-gradient(135deg, 
        var(--pure-white) 0%, 
        rgba(228, 212, 219, 0.5) 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: none;
    border: 2px solid var(--mauve);
    transition: transform 0.3s, box-shadow 0.3s;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(27, 122, 122, 0.2);
    border-color: var(--teal);
}

.category-card h3 {
    color: var(--deep-teal);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.category-card p {
    color: #666;
    line-height: 1.6;
}

/* Newsletter Section */
.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form {
    margin-top: 2rem;
}

.newsletter-form form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 1px solid #DDD;
    border-radius: 4px;
    font-size: 1rem;
    background: #FFFFFF;
    color: var(--dark-brown);
    transition: all 0.3s;
}

.newsletter-form input[type="email"]::placeholder {
    color: #999;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--teal);
    background: #FFFFFF;
    box-shadow: 0 0 8px rgba(27, 122, 122, 0.3);
}

.newsletter-form button {
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--deep-teal) 100%);
    color: var(--pure-white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    box-shadow: 0 3px 8px rgba(27, 122, 122, 0.3);
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, var(--deep-teal) 0%, var(--teal) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(27, 122, 122, 0.5);
}

.newsletter-note {
    font-size: 0.85rem;
    color: #999;
    font-style: normal;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-categories {
        grid-template-columns: 1fr;
    }

    .newsletter-form form {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .blog-content h3 {
        font-size: 1.2rem;
    }

    .blog-image {
        height: 200px;
    }
}

/* Blog Article Page Styles */
.blog-article {
    padding: 5rem 0;
    background: linear-gradient(to bottom, 
        var(--soft-rose) 0%, 
        var(--mauve) 40%, 
        var(--pale-lavender) 100%);
}

.article-intro {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, 
        var(--pale-lavender) 0%, 
        rgba(245, 165, 184, 0.6) 50%, 
        var(--soft-rose) 100%);
    border-left: 4px solid var(--teal);
    border-radius: 10px;
}

.article-intro .lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    font-style: normal;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--deep-teal);
}

.article-body h2 {
    color: var(--deep-teal);
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    text-align: left;
    font-weight: 600;
}

.article-body h3 {
    color: var(--teal);
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 600;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.article-body li {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.article-body strong {
    color: var(--teal);
    font-weight: 600;
}

.callout {
    background: linear-gradient(135deg, 
        var(--pale-lavender) 0%, 
        rgba(245, 165, 184, 0.6) 50%, 
        var(--soft-rose) 100%);
    color: var(--deep-teal);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid var(--teal);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: normal;
}

.article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E5E5;
}

.back-link {
    display: inline-block;
    color: var(--teal);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--deep-teal);
}

/* Responsive Article Styles */
@media (max-width: 768px) {
    .article-intro .lead {
        font-size: 1.15rem;
    }

    .article-body {
        font-size: 1rem;
    }

    .article-body h2 {
        font-size: 1.7rem;
    }

    .article-body h3 {
        font-size: 1.3rem;
    }

    .callout {
        font-size: 1rem;
        padding: 1.2rem 1.5rem;
    }
}

/* Approach Section Styles */
.approach-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, 
        var(--mauve) 0%, 
        rgba(27, 122, 122, 0.2) 50%, 
        var(--soft-rose) 100%);
    position: relative;
    overflow: hidden;
}

.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

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

.approach-section h2 {
    color: var(--deep-teal);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-shadow: none;
}

.approach-intro {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 4rem;
    color: var(--deep-teal);
    line-height: 1.9;
    font-style: normal;
}

.approach-carousel-wrapper {
    overflow: hidden;
    margin-bottom: 4rem;
    padding: 2rem 0;
    position: relative;
}

.approach-carousel {
    display: flex;
    gap: 2.5rem;
    animation: scroll-carousel 30s linear infinite;
    width: fit-content;
}

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

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2 - 1.25rem));
    }
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.approach-card {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--soft-rose);
    box-shadow: 0 4px 16px rgba(27, 122, 122, 0.1);
    position: relative;
    overflow: hidden;
    min-width: 320px;
    flex-shrink: 0;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.approach-card:hover::before {
    opacity: 0;
}

.approach-card:hover {
    transform: translateY(-6px);
    border-color: var(--teal);
    box-shadow: 0 12px 28px rgba(27, 122, 122, 0.2);
}

.approach-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
    position: relative;
    z-index: 1;
}

.approach-card h3 {
    color: var(--deep-teal);
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.approach-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.approach-image-section {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, 
        var(--pure-white) 0%, 
        var(--pale-lavender) 50%, 
        rgba(245, 165, 184, 0.3) 100%);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(166, 123, 140, 0.25);
    border: 3px solid var(--mauve);
}

.approach-image-section img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(27, 122, 122, 0.15);
    border: 2px solid var(--soft-rose);
}

.approach-quote {
    padding: 2rem;
}

.approach-quote p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    font-weight: 400;
    position: relative;
    padding-left: 2rem;
}

.approach-quote p::before {
    content: '\201C';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--teal);
    opacity: 0.4;
    font-family: Georgia, serif;
}

/* Responsive Approach Section */
@media (max-width: 968px) {
    .approach-carousel {
        animation-duration: 25s;
    }
    
    .approach-card {
        min-width: 280px;
    }
    
    .approach-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .approach-image-section {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
    
    .approach-quote p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .approach-section {
        padding: 4rem 0;
    }
    
    .approach-section h2 {
        font-size: 2.2rem;
    }
    
    .approach-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .approach-carousel {
        animation-duration: 20s;
    }
    
    .approach-card {
        min-width: 260px;
        padding: 2rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-card {
        padding: 2rem;
    }
    
    .approach-icon {
        font-size: 3rem;
    }
    
    .approach-card h3 {
        font-size: 1.4rem;
    }
    
    .approach-card p {
        font-size: 1rem;
    }
    
    .approach-image-section {
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .approach-quote p {
        font-size: 1.1rem;
        padding-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .approach-section h2 {
        font-size: 1.8rem;
    }
    
    .approach-intro {
        font-size: 1rem;
    }
    
    .approach-carousel {
        animation-duration: 18s;
        gap: 1.5rem;
    }
    
    .approach-card {
        min-width: 240px;
    }
    
    .approach-icon {
        font-size: 2.5rem;
    }
    
    .approach-card h3 {
        font-size: 1.2rem;
    }
    
    .approach-quote p {
        font-size: 1rem;
    }
}