
/* CSS Reset and Variables */
:root {
    --color-primary: #6B5B95;
    --color-primary-dark: #564A78;
    --color-secondary: #88B04B;
    --color-accent: #F7CAC9;
    --color-background: #FAFAFA;
    --color-surface: #FFFFFF;
    --color-text: #2D3142;
    --color-text-light: #5F6B7A;
    --color-text-muted: #8B95A5;
    --color-border: #E8E8E8;
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --container-max: 1200px;
    --section-padding: clamp(4rem, 10vh, 8rem);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
}

/* Typography */
.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.5rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-light);
    position: relative;
    transition: var(--transition);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: calc(4.5rem + 4rem) 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 3rem);
    position: relative;
    z-index: 2;
}

.hero-image-gallery {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-collage {
    position: relative;
    width: 90%;
    max-width: 500px;
    aspect-ratio: 1;
}

.hero-photo {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

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

.hero-photo-main {
    width: 60%;
    height: 70%;
    top: 5%;
    left: 5%;
    z-index: 2;
}

.hero-photo-secondary {
    width: 45%;
    height: 50%;
    top: 20%;
    right: 0;
    z-index: 3;
    transform: rotate(5deg);
}

.hero-photo-secondary:hover {
    transform: rotate(0deg) scale(1.03);
    z-index: 4;
}

.hero-photo-tertiary {
    width: 40%;
    height: 45%;
    bottom: 5%;
    right: 10%;
    z-index: 1;
    transform: rotate(-3deg);
}

.hero-photo-tertiary:hover {
    transform: rotate(0deg) scale(1.03);
    z-index: 4;
}

.hero-badge {
    position: absolute;
    bottom: 15%;
    left: 5%;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    z-index: 5;
}

.hero-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
}

.hero-badge-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    display: block;
}

/* Hero Single Image */
.hero-image-single {
    position: relative;
    width: 90%;
    max-width: 450px;
    margin: 0 auto;
}

.hero-image-single img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/5;
}


.hero-tagline {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.highlight {
    background: linear-gradient(120deg, var(--color-accent) 0%, var(--color-accent) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 88%;
    padding: 0 0.3rem;
    color: var(--color-text);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.hero-title-accent {
    color: var(--color-primary);
    font-style: italic;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--color-text-light);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Hero */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image-gallery {
        display: none;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

.hero-visual {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    right: 10%;
    top: 10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent) 0%, rgba(247, 202, 201, 0.3) 100%);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.hero-accent {
    position: absolute;
    right: 5%;
    bottom: 20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    opacity: 0.2;
    animation: float 8s ease-in-out infinite reverse;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

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

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

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

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

.btn-full {
    width: 100%;
}

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

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

/* About Image - Simple clean layout, left-aligned */
.about-image {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.about-image-frame {
    width: 100%;
    max-width: 400px;
}

.about-photo {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.credentials {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;}
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: var(--color-text);
}

.credential-icon {
    width: 24px;
    height: 24px;
    background: var(--color-secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Services Section - Disciplines */
.services {
    padding: var(--section-padding) 0;
    background: var(--color-background);
}

.services-disciplines {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.discipline-card {
    background: var(--color-surface);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.discipline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-primary);
}

.discipline-card-coaching::before {
    background: #88B04B;
}

.discipline-card-therapy::before {
    background: #6B5B95;
}

.discipline-card-counselling::before {
    background: #F7CAC9;
}

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

.discipline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.discipline-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    background: var(--color-background);
    color: var(--color-text);
}

.discipline-card-coaching .discipline-badge {
    background: rgba(136, 176, 75, 0.15);
    color: #5a7d3c;
}

.discipline-card-therapy .discipline-badge {
    background: rgba(107, 91, 149, 0.15);
    color: var(--color-primary);
}

.discipline-card-counselling .discipline-badge {
    background: rgba(247, 202, 201, 0.5);
    color: #8b6b6a;
}

.discipline-icon {
    width: 48px;
    height: 48px;
    background: var(--color-background);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.discipline-icon svg {
    width: 24px;
    height: 24px;
}

.discipline-title {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.discipline-description {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.discipline-features {
    list-style: none;
}

.discipline-features li {
    font-size: 0.875rem;
    color: var(--color-text-light);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.discipline-features li:last-child {
    border-bottom: none;
}

.services-integration {
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-background) 100%);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--color-border);
}

.services-integration h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 1rem 0;
}

.services-integration p {
    font-size: 1rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .services-disciplines {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .services-integration {
        padding: 2rem;
    }
}

/* Experience Section */
    padding: var(--section-padding) 0;
    background: var(--color-background);
}

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

.service-card {
    background: var(--color-surface);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--color-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.service-icon svg {
    width: 28px;
    height: 28px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.service-description {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Approach Section */
.approach {
    padding: var(--section-padding) 0;
    background: var(--color-surface);
    position: relative;
    overflow: hidden;
}

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

.approach-text {
    font-size: 1.0625rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--color-background);
    border-radius: 12px;
    border-left: 3px solid var(--color-primary);
}

.approach-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    opacity: 0.5;
}

.approach-item-content h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.approach-item-content p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.approach-visual {
    position: relative;
    height: 500px;
}

.approach-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent) 0%, rgba(247, 202, 201, 0.2) 100%);
    opacity: 0.5;
}

/* Session Info Section */
.session-info {
    padding: 4rem 0;
    background: var(--color-primary);
    color: white;
}

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

.session-card {
    text-align: center;
}

.session-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.session-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.session-card p {
    font-size: 0.9375rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Contact Section - Redesigned */
.contact {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-surface) 100%);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
}

.contact-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.contact-card.non-clickable {
    cursor: default;
}

.contact-card.non-clickable:hover {
    border-color: var(--color-border);
    transform: none;
    box-shadow: none;
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    background: var(--color-surface);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: var(--color-primary);
    color: white;
}

.contact-card-icon svg {
    width: 24px;
    height: 24px;
}

.contact-card-icon.whatsapp {
    color: #25D366;
}

.contact-card:hover .contact-card-icon.whatsapp {
    background: #25D366;
    color: white;
}

.contact-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

.contact-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text);
}

.contact-arrow {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.contact-card:hover .contact-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--color-primary);
}

.contact-cta {
    text-align: center;
    margin-top: 3rem;
}

.contact-note {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    font-style: italic;
}

@media (max-width: 640px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.9375rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
}

.footer-credentials {
    text-align: right;
}

.footer-credentials p {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.875rem;
    opacity: 0.7;
}

.footer-note {
    font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid,
    .approach-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding-left: 0;
    }
    
    .hero-visual {
        display: none;
    }
    
    .approach-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .session-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-credentials {
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* Experience Section */
.experience {
    padding: var(--section-padding) 0;
    background: var(--color-surface);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--color-primary);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
}

.timeline-marker {
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translateX(-5px);
}

.timeline-marker.current {
    background: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(136, 176, 75, 0.3);
}

.timeline-content {
    background: var(--color-background);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 3px solid var(--color-primary);
}

.timeline-date {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0.5rem 0;
    color: var(--color-text);
}

.timeline-company {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.timeline-desc {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* Education Section */
.education-section {
    margin-top: 4rem;
}

.education-section .section-subtitle {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

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

.education-card {
    background: var(--color-background);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.education-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.education-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.education-card h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.education-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.education-date {
    font-size: 0.875rem;
    color: var(--color-primary);
    font-weight: 500;
}

/* Volunteering Section */
.volunteering-section {
    margin-top: 4rem;
}

.volunteering-section .section-subtitle {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

.volunteering-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.volunteering-card {
    background: linear-gradient(135deg, var(--color-accent) 0%, rgba(247, 202, 201, 0.5) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.volunteering-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.volunteering-card h4 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.volunteering-card p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
}

/* Languages & Causes Section */
.languages-causes {
    padding: var(--section-padding) 0;
    background: var(--color-background);
}

.languages-causes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.languages-section h3,
.causes-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.language-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.language-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--color-surface);
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.language-name {
    font-weight: 600;
    color: var(--color-text);
}

.language-level {
    font-size: 0.875rem;
    color: var(--color-primary);
    background: rgba(107, 91, 149, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.causes-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cause-tag {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--color-surface);
}

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

.testimonial-card {
    background: var(--color-background);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--color-text);
    line-height: 1.8;
    font-style: italic;
}

.testimonial-content p::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-accent);
    line-height: 1;
    display: block;
    margin-bottom: -1rem;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.testimonial-cta {
    text-align: center;
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 1.5rem;
    }
    
    .timeline-marker {
        left: -1.5rem;
        transform: translateX(-4px);
    }
    
    .timeline-content {
        padding: 1rem;
    }
    
    .languages-causes-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cause-tag {
        font-size: 0.8125rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-visual,
    .approach-visual {
        display: none;
    }
    
    body {
        background: white;
    }
    
    section {
        padding: 2rem 0;
    }
}
