/* ===========================
   ROOT VARIABLES
   =========================== */
:root {
    --sage: #B8C5B2;
    --beige: #D6CFC3;
    --ivory: #EFE8DD;
    --moss: #8F9F8B;
    --taupe: #B2A89B;
    --dark: #2E2E2E;
}

/* ===========================
   RESET & BODY
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--dark);
    line-height: 1.8;
    background: var(--ivory);
}

/* ===========================
   CONTAINER
   =========================== */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

/* ===========================
   HEADER
   =========================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(184, 197, 178, 0.95);
    padding: 18px 0;
}

.header-inner {
    text-align: center;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 4px;
    font-size: 2.2rem;
}

.logo span {
    font-size: 0.85rem;
    letter-spacing: 3px;
}

/* ===========================
   HERO
   =========================== */
.hero {
    height: 720px;
    background: url("hero2.jpg") center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin-top: 140px;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 1.05rem;
}

.hero-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 42px;
    background: var(--moss);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(143, 159, 139, 0.3);
}

.hero-btn:hover {
    background: var(--sage);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(143, 159, 139, 0.4);
}



/* ===========================
   ABOUT
   =========================== */
.about {
    padding: 100px 0;
    background: var(--beige);
}

.about-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.about-text p {
    margin-bottom: 0px;
    font-size: 1.05rem;
    line-height: 1.7;
}


.languages-inline p {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

/* ===========================
   WHY THERAPY - Box Layout
   =========================== */
.why-therapy {
    padding: 100px 0;
    background: white;
}

.why-therapy-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

.why-boxes {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.why-box {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: var(--ivory);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.why-image-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px;
    border: 8px solid var(--beige);
    position: relative;
}

.why-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.why-box:hover .why-image-circle img {
    transform: scale(1.05);
}

.why-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.4;
}

.why-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 15px;
}

.why-content p:last-child {
    margin-bottom: 0;
}

/* ===========================
   HOW I WORK - Process Flow
   =========================== */
.how-i-work {
    padding-left: 100px;
    padding-bottom: 100px;
    padding-right: 100px;
    padding-top: 20px;
    background: white;
    text-align: center;
}

.how-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.how-subtitle {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark);
    opacity: 0.9;
}

/* Process Flow Container */
.process-flow {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    position: relative;
    padding: 40px 0;
}

/* Process Step */
.process-step {
    flex: 1;
    max-width: 320px;
    position: relative;
    z-index: 3;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Step Circle */
.step-circle {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    border-radius: 50%;
    background: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--beige);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.step-circle i {
    font-size: 2.5rem;
    color: var(--moss);
    transition: all 0.3s ease;
}

/* Step Content */
.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.4;
    text-align: center;
}

.step-content pre {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark);
    line-height: 1.4;
    text-align: center;
}

.step-content p {
    font-size: 1.05rem;
    color: var(--dark);
    line-height: 1.7;
    opacity: 0.9;
    text-align: center;
}



/* Hover Effects */
.process-step:hover .step-circle {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    background: var(--moss);
    border-color: var(--moss);
}

.process-step:hover .step-circle i {
    color: white;
}

.process-step:hover .step-content h3 {
    color: var(--moss);
}

.process-step:hover .step-content p {
    opacity: 1;
}

/* ===========================
   WHO I WORK WITH - Split Layout
   =========================== */
.who-i-work {
    padding: 100px 0;
    background: var(--beige);
}

.who-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.who-content {
    padding-right: 30px;
}

.who-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.who-content p {
    margin-bottom: 0px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark);
}

.who-content p:last-child {
    margin-bottom: 0;
}

.who-image {
    text-align: center;
}

.who-image img {
    max-width: 100%;
}

/* =====================================
   THERAPEUTIC APPROACH SECTION
===================================== */

.therapeutic-approach {
    padding: 100px 100px;
    background: #fafafa;
}

/* Layout */
.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 180px;
    align-items: start;
}

/* LEFT SIDE */
.approach-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: var(--dark);
}

.approach-left p {
    margin-bottom: 0px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark);
}

/* RIGHT SIDE */
.approach-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* STRIP CARD */
.approach-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 35px 28px;
    width: 564px;
    height: 64px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(184, 197, 178, 0.2);
    transition: all 0.3s ease;
}

/* HOVER — SAME AS SPECIALISMS */
.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    border-color: #8f9f8b;
}

/* ICON CIRCLE */
.approach-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* ICON */
.approach-icon i {
    font-size: 1.3rem;
    color: #6f9f8f;
    transition: all 0.3s ease;
}

/* ICON HOVER */
.approach-card:hover .approach-icon {
    background: #6f9f8f;
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(111, 159, 143, 0.25);
}

.approach-card:hover .approach-icon i {
    color: #ffffff;
}

/* TEXT */
.approach-card .text {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    transition: color 0.3s ease;
}

.approach-card:hover .text {
    color: #6f9f8f;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .approach-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


/* ===========================
   SPECIALISMS - 3x3 Compact Cards
   =========================== */
.specialisms {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.specialisms-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.specialisms-subtitle {
    font-size: 1rem;
    color: var(--dark);
    opacity: 0.8;
}

/* Specialisms Grid */
.specialisms-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Grid Row */
.grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Specialism Card */
.spec-card {
    background: var(--ivory);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(184, 197, 178, 0.2);
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: white;
    border-color: var(--sage);
}

/* Card Icon */
.card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.spec-card:hover .card-icon {
    background: var(--moss);
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(143, 159, 139, 0.2);
}

.card-icon i {
    font-size: 1.3rem;
    color: var(--moss);
    transition: all 0.3s ease;
}

.spec-card:hover .card-icon i {
    color: white;
}

/* Card Text */
.spec-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.4;
    font-weight: 600;
    margin: 0;
    transition: all 0.3s ease;
}

.spec-card:hover h3 {
    color: var(--moss);
}

/* ===========================
   PERSONAL NOTE SECTION
   =========================== */
.personal-note {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--sage), var(--beige));
}

.note-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    padding: 60px 70px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    border: 3px solid var(--ivory);
}

.note-card::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: rgba(184, 197, 178, 0.1);
    border-radius: 30px;
    z-index: -1;
}

.note-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--beige);
}

.note-header i {
    font-size: 2.5rem;
    color: var(--moss);
}

.note-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--dark);
    margin: 0;
}

.note-content p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--dark);
    text-align: center;
    font-style: italic;
    opacity: 0.9;
}

/* ===========================
   GET IN TOUCH SECTION
   =========================== */
.get-in-touch {
    padding: 80px 0;
    background: var(--beige);
}

.touch-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.touch-info {
    padding-right: 30px;
}

.touch-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-top: 23px;
    margin-bottom: 25px;
    color: var(--dark);
}

.email-info {
    margin-bottom: 5px;
}

.email-label {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 1px;
    font-weight: 500;
}

.touch-message {
    font-size: 1rem;
    max-width: 300px;
    line-height: 1.7;
    color: var(--dark);
    opacity: 0.9;
}

/* Contact Form */
.contact-form {
    padding: 35px 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(184, 197, 178, 0.5);
    border-radius: 10px;
    background: white;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--moss);
    background: white;
    box-shadow: 0 0 0 3px rgba(143, 159, 139, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--dark);
    opacity: 0.5;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    background: var(--moss);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 14px 35px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(143, 159, 139, 0.2);
    margin-top: 10px;
}

.contact-form button:hover {
    background: var(--sage);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(143, 159, 139, 0.3);
}

.contact-form button:active {
    transform: translateY(0);
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background: var(--taupe);
    color: #fff;
    text-align: center;
    padding: 30px;
    font-size: 1.1rem;
}

footer a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
}

footer a:hover {
    opacity: 0.8;
}

/* ===========================
   RESPONSIVE - GENERAL
   =========================== */
@media (max-width: 1024px) {
    .why-boxes {
        gap: 20px;
    }
    
    .why-box {
        min-width: calc(33.333% - 20px);
    }
    
    .process-flow {
        gap: 30px;
    }
    
    .process-step {
        max-width: 280px;
    }
    
    .step-circle {
        width: 90px;
        height: 90px;
    }
    
    .step-circle i {
        font-size: 2rem;
    }
}

@media (max-width: 900px) {
    .about-wrapper,
    .who-wrapper,
    .touch-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-boxes {
        flex-direction: column;
        align-items: center;
    }
    
    .why-box {
        max-width: 500px;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .why-box:last-child {
        margin-bottom: 0;
    }
    
    /* Process Flow Mobile Layout */
    .process-flow {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        padding: 40px 0 20px;
    }
    
    .process-step {
        max-width: 500px;
        width: 100%;
    }
    
    .step-circle {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }
    
    .step-circle i {
        font-size: 2.5rem;
    }
    
    /* Who I Work With */
    .who-content {
        padding-right: 0;
    }
    
    /* Specialisms */
    .grid-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .spec-card {
        padding: 22px 18px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 12px;
    }
    
    .card-icon i {
        font-size: 1.2rem;
    }
    
    .spec-card h3 {
        font-size: 0.95rem;
    }
    
    /* Personal Note Responsive */
    .note-card {
        padding: 50px 40px;
    }
    
    .note-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .note-header h2 {
        font-size: 2rem;
    }
    
    /* Get in Touch Responsive */
    .touch-info {
        padding-right: 0;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .how-i-work,
    .who-i-work,
    .personal-note,
    .get-in-touch {
        padding: 70px 0;
    }
    
    .how-title {
        font-size: 2.2rem;
    }
    
    .how-subtitle {
        margin: 15px auto 50px;
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .process-step {
        max-width: 450px;
    }
    
    .step-content h3 {
        font-size: 1.4rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    /* Who I Work With */
    .who-title {
        font-size: 2rem;
    }
    
    .who-content p {
        font-size: 1rem;
    }
    
    /* Specialisms */
    .specialisms {
        padding: 70px 0;
    }
    
    .specialisms-title {
        font-size: 2.2rem;
    }
    
    .specialisms-subtitle {
        font-size: 0.95rem;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .specialisms-grid {
        gap: 20px;
    }
    
    .grid-row {
        gap: 18px;
    }
    
    .spec-card {
        padding: 20px 16px;
    }
    
    .card-icon {
        width: 42px;
        height: 42px;
    }
    
    .card-icon i {
        font-size: 1.1rem;
    }
    
    .spec-card h3 {
        font-size: 0.9rem;
    }
    
    /* Personal Note */
    .note-card {
        padding: 40px 35px;
    }
    
    .note-header h2 {
        font-size: 1.9rem;
    }
    
    .note-header i {
        font-size: 2.2rem;
    }
    
    .note-content p {
        font-size: 1.1rem;
    }
    
    /* Get in Touch */
    .touch-info h2 {
        font-size: 2rem;
    }
    
    .email-address {
        font-size: 1rem;
    }
    
    .touch-message {
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
}

@media (max-width: 600px) {
    .why-therapy {
        padding: 80px 0;
    }
    
    .why-therapy-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .why-image-circle {
        width: 150px;
        height: 150px;
        margin-bottom: 25px;
    }
    
    .why-content h3 {
        font-size: 1.4rem;
    }
    
    .why-content p {
        font-size: 1rem;
    }
    
    .hero {
        height: 600px;
    }
    
    .hero-content {
        margin-top: 100px;
        padding: 0 20px;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .process-step {
        max-width: 350px;
    }
    
    .step-circle {
        width: 90px;
        height: 90px;
    }
    
    .step-circle i {
        font-size: 2rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
    
    /* Specialisms */
    .grid-row {
        grid-template-columns: repeat(3, 1fr); /* Keep 3 columns */
        gap: 15px; /* gap between cards */
    }
    
    .spec-card {
        max-width: 280px;
        margin: 0 auto;
        padding: 18px 15px;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }
    
    .card-icon i {
        font-size: 1.2rem;
    }
    
    .spec-card h3 {
        font-size: 0.95rem;
    }
    
    /* Personal Note */
    .note-card {
        padding: 35px 30px;
        border-radius: 25px;
    }
    
    .note-header h2 {
        font-size: 1.7rem;
    }
    
    .note-header i {
        font-size: 2rem;
    }
    
    .note-content p {
        font-size: 1.05rem;
        line-height: 1.8;
    }
    
    /* Get in Touch */
    .touch-info h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .email-label {
        font-size: 0.95rem;
    }
    
    .email-address {
        font-size: 1.05rem;
    }
    
    .touch-message {
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 25px 20px;
        gap: 15px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .contact-form button {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    
    .logo span {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
    
    .why-therapy-title,
    .how-title,
    .who-title {
        font-size: 1.8rem;
    }
    
    footer p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .process-step {
        max-width: 300px;
    }
    
    .step-circle {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .step-circle i {
        font-size: 1.8rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    /* Personal Note */
    .note-card {
        padding: 30px 25px;
    }
    
    .note-header h2 {
        font-size: 1.6rem;
    }
    
    .note-header i {
        font-size: 1.8rem;
    }
    
    .note-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Specialisms */
    .specialisms-title {
        font-size: 2rem;
    }
    
    .specialisms-subtitle {
        font-size: 0.9rem;
    }
    
    .section-header {
        margin-bottom: 35px;
    }
    
    .spec-card {
        padding: 16px 14px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
    }
    
    .card-icon i {
        font-size: 1.1rem;
    }
    
    .spec-card h3 {
        font-size: 0.9rem;
    }
}

/* ===========================
   PRIVACY POLICY PAGE STYLING
   =========================== */

.privacy-page .about .container {
    max-width: 900px;
}

.privacy-page .about h2 {
    text-align: center;
    letter-spacing: 1px;
}

.privacy-page .about h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-top: 60px;
    margin-bottom: 18px;
    color: var(--dark);
}

.privacy-page .about p {
    margin-bottom: 18px;
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--dark);
}

.privacy-page .about ul {
    margin: 15px 0 25px 25px;
}

.privacy-page .about ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.7;
}

.privacy-page .about hr {
    border: none;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(143, 159, 139, 0.5),
        transparent
    );
    margin: 60px 0;
}

.privacy-page .about strong {
    font-weight: 600;
}

.privacy-page .about p strong {
    color: var(--moss);
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-page .about {
        padding: 80px 0;
    }

    .privacy-page .about h2 {
        font-size: 2rem;
    }

    .privacy-page .about h3 {
        font-size: 1.4rem;
    }

    .privacy-page .about p,
    .privacy-page .about ul li {
        font-size: 0.98rem;
    }
}


@media (max-width: 768px) {
  .approach-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .approach-left,
  .approach-right {
    width: 100%;
  }

  .therapeutic-approach {
    padding: 70px 20px;   /* matches How I Work mobile feel */
  }

  .approach-card {
    width: 100%;
    max-width: 100%;
  }
}
