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

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

h2 {
    margin: 0 !important;
}

.top-banner {
    background-color: #A56558;

    /* Terracotta 
Version: 1.0.14

Theme Name: Peaceful Thoughts
*/
    padding: 8px 20px;
    text-align: center;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.banner-content span {
    color: #FFFFFF;

    /* Soft White */
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.main-header {
    background-color: #E8E3D6;

    /* Soft White */
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

/* ========================================
   TEXT LOGO STYLING
   ======================================== */
.logo-text {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    line-height: 1;
}

.logo-peaceful {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #7A9E7E;
    letter-spacing: 1px;
}

.logo-thoughts {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #646464;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: -2px;
}

.logo-text:hover .logo-peaceful {
    color: #A56558;
}

@media (max-width: 480px) {
    .logo-peaceful {
        font-size: 24px;
    }

    .logo-thoughts {
        font-size: 12px;
    }
}

.logo img {
    height: 100px;
    margin: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #333333;

    /* Deep Charcoal */
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #A56558;

    /* Terracotta */
}

.hero-section {
    background: linear-gradient(to bottom, #F9F4E8 0%, #FFFFFF 100%);

    /* Soft Cream to Soft White */
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* ========================================
   HERO SECTION WITH BACKGROUND IMAGE
   ======================================== */
.hero-section-home {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Image */
.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;
    object-position: center;
    filter: brightness(0.5) saturate(0.7);

    /* Mutes the image */
    margin: 0;
}

/* Overlay for better text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
    135deg,
    rgba(122, 158, 126, 0.75) 0%,
    rgba(165, 101, 88, 0.65) 100%
  );
    z-index: 1;
}

/* Content Wrapper */
.hero-section-home .container {
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-content-wrapper h1 {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: #FFFFFF;
    line-height: 1.7;
    margin-bottom: 45px;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 220px;
}

.cta-btn.primary {
    background-color: #A56558;
    color: #FFFFFF;
    border: 2px solid #A56558;
}

.cta-btn.primary:hover {
    background-color: #8f4d42;
    border-color: #8f4d42;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(165, 101, 88, 0.4);
}

.cta-btn.secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.cta-btn.secondary:hover {
    background-color: #FFFFFF;
    color: #7A9E7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN FOR HERO
   ======================================== */
@media (max-width: 968px) {
    .hero-section-home {
        min-height: 75vh;
    }

    .hero-content-wrapper h1 {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .cta-btn {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .hero-section-home {
        min-height: 65vh;
    }

    .hero-content-wrapper h1 {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 17px;
        margin-bottom: 35px;
    }
}

@media (max-width: 480px) {
    .hero-section-home {
        min-height: 60vh;
    }

    .hero-content-wrapper {
        padding: 30px 15px;
    }

    .hero-content-wrapper h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .cta-btn {
        padding: 16px 30px;
        font-size: 15px;
    }
}

/* ========================================
   FOUNDER SECTION WITH IMAGE
   ======================================== */
.founder-section {
    background-color: #E8E3D6;
    padding: 80px 20px;
}

.founder-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

/* Image Column */
.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Decorative Accent Behind Image */
.image-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #7A9E7E;
    border-radius: 12px;
    top: 20px;
    left: 20px;
    z-index: 1;
}

/* Text Column */
.founder-text {
    padding: 20px 0;
}

.founder-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #646464;
    margin-bottom: 10px;
    font-weight: 400;
}

.founder-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #333333;
    margin-bottom: 30px;
    font-weight: 400;
}

.bio-text {
    font-size: 16px;
    line-height: 1.8;
    color: #646464;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-block;
    background-color: #A56558;
    color: #FFFFFF;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 14px;
    transition: all 0.3s;
    border-radius: 2px;
}

.cta-button:hover {
    background-color: #8f4d42;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(165, 101, 88, 0.3);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 968px) {
    .founder-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .founder-image img {
        height: 450px;
    }

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

@media (max-width: 768px) {
    .founder-section {
        padding: 60px 20px;
    }

    .founder-text h2 {
        font-size: 38px;
    }

    .founder-text h3 {
        font-size: 28px;
    }

    .founder-image img {
        height: 400px;
    }

    .image-accent {
        top: 15px;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .founder-image {
        max-width: 100%;
    }

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

    .founder-text h2 {
        font-size: 32px;
    }

    .founder-text h3 {
        font-size: 24px;
    }

    .bio-text {
        font-size: 15px;
    }
}

.services-section {
    background-color: #F9F4E8;

    /* Soft Cream */
    padding: 40px 20px;
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    text-align: center;
    color: #333333;

    /* Deep Charcoal */
    margin: 0px;
    font-weight: 400;
}

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

.service-card {
    text-align: center;
    padding: 20px;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background-color: #FFFFFF;

    /* Soft White */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #7A9E7E;

    /* Sage Green */
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(122, 158, 126, 0.2);
}

.service-icon img {
    width: 60px;
    height: 60px;
    filter: invert(45%) sepia(18%) saturate(685%) hue-rotate(75deg) brightness(94%) contrast(90%);

    /* This filter converts the icon to Sage Green color */
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #333333;

    /* Deep Charcoal */
    margin-bottom: 15px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #646464;

    /* Neutral Gray */
}

/* ========================================
   SIMPLE 6-COLUMN BLOG SECTION
   ======================================== */
.homepage-blog {
    padding: 0;
}

.blog-sidebar-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

/* Blog Header */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #7A9E7E;
}

.blog-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #333333;
    margin: 0;
}

.view-all-link {
    color: #7A9E7E;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.view-all-link:hover {
    color: #A56558;
}

/* Featured Blog Article */
.blog-feature {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(122, 158, 126, 0.2);
}

.blog-feature-image {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.blog-feature:hover .blog-feature-image img {
    transform: scale(1.08);
}

.blog-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
}

.blog-badge.trauma {
    background-color: #A56558;
    color: #FFFFFF;
}

.blog-feature-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #333333;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s;
}

.blog-feature:hover h4 {
    color: #A56558;
}

.blog-feature-content p {
    font-size: 14px;
    color: #646464;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    color: #646464;
    margin-bottom: 15px;
}

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7A9E7E;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}

.blog-read-link:hover {
    color: #A56558;
    gap: 12px;
}

.blog-read-link i {
    font-size: 11px;
}

/* Blog List Items */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-item {
    padding: 15px;
    background-color: #F9F4E8;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.blog-item:hover {
    background-color: #FFFFFF;
    box-shadow: 0 3px 12px rgba(122, 158, 126, 0.12);
    transform: translateX(5px);
}

.blog-item h5 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #333333;
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s;
}

.blog-item:hover h5 {
    color: #A56558;
}

.blog-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-category {
    display: inline-block;
    padding: 4px 10px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 3px;
    text-transform: uppercase;
}

.blog-category.depression {
    background-color: #7A9E7E;
    color: #FFFFFF;
}

.blog-category.anxiety {
    background-color: #D4A574;
    color: #FFFFFF;
}

.blog-category.medication {
    background-color: #B89B7E;
    color: #FFFFFF;
}

.blog-category.wellness {
    background-color: #8EBAA8;
    color: #FFFFFF;
}

.blog-date {
    font-size: 11px;
    color: #646464;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .blog-sidebar-card {
        padding: 25px 20px;
    }

    .blog-header h3 {
        font-size: 24px;
    }

    .blog-feature-image {
        height: 180px;
    }

    .blog-feature-content h4 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .blog-feature-image {
        height: 160px;
    }
}

.booking-section {
    background: linear-gradient(to bottom, #FFFFFF 0%, #F9F4E8 100%);

    /* Soft White to Soft Cream */
    padding: 80px 20px;
    text-align: center;
}

.booking-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.booking-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #333333;

    /* Deep Charcoal */
    margin-bottom: 25px;
    font-weight: 400;
}

.booking-description {
    font-size: 16px;
    line-height: 1.8;
    color: #646464;

    /* Neutral Gray */
    margin-bottom: 40px;
}

.main-footer {
    background-color: #F9F4E8;

    /* Soft Cream */
    padding: 30px 20px;
    border-top: 1px solid rgba(122, 158, 126, 0.2);

    /* Subtle Sage Green border */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright,
.rights {
    font-size: 12px;
    color: #646464;

    /* Neutral Gray */
    letter-spacing: 1px;
}

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

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: #A56558;

    /* Terracotta */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;

    /* Soft White */
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

.social-icons a:hover {
    background-color: #7A9E7E;

    /* Sage Green */
    transform: translateY(-3px);
}

/* ========================================
   ABOUT HERO SECTION
   ======================================== */
.about-hero {
    background: linear-gradient(135deg, #F9F4E8 0%, #FFFFFF 100%);
    padding: 60px 20px;
    position: relative;
}

.about-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.hero-image-section img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-text-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text-section .subtitle {
    font-size: 16px;
    color: #646464;
    letter-spacing: 1px;
    line-height: 1.8;
}

/* ========================================
   PROFESSIONAL BACKGROUND SECTION
   ======================================== */
.professional-background {
    padding: 80px 20px;
    background-color: #FFFFFF;
}

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

.content-wrapper.centered {
    text-align: center;
}

.professional-background h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #333333;
    margin-bottom: 40px;
    text-align: center;
}

.bio-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #646464;
    margin-bottom: 25px;
}

/* ========================================
   PHILOSOPHY SECTION
   ======================================== */
.philosophy-section {
    padding: 80px 20px;
    background: linear-gradient(to right, #F9F4E8 0%, #FFFFFF 50%, #F9F4E8 100%);
    position: relative;
    overflow: hidden;
}

.decorative-element {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(122, 158, 126, 0.08);
    z-index: 0;
}

.decorative-element.left {
    left: -150px;
    top: 50px;
}

.decorative-element.right {
    right: -150px;
    bottom: 50px;
}

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

.philosophy-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #333333;
    margin-bottom: 40px;
}

.philosophy-content .lead-text {
    font-size: 20px;
    line-height: 1.7;
    color: #7A9E7E;
    margin-bottom: 30px;
    font-weight: 500;
}

.philosophy-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #646464;
    margin-bottom: 25px;
}

/* ========================================
   CREDENTIALS SECTION
   ======================================== */
.credentials-section {
    padding: 80px 20px;
    background-color: #FFFFFF;
}

.credentials-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #333333;
    margin-bottom: 20px !important;
    text-align: center;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.credential-card {
    text-align: center;
    padding: 20px;
    background-color: #F9F4E8;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.credential-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(122, 158, 126, 0.15);
}

.credential-icon {
    width: 80px;
    height: 80px;
    background-color: #7A9E7E;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential-icon i {
    font-size: 32px;
    color: #FFFFFF;
}

.credential-card h3 {
    font-size: 20px;
    color: #333333;
    margin-bottom: 15px;
    font-weight: 600;
}

.credential-card p {
    font-size: 15px;
    color: #646464;
    line-height: 1.6;
}

.credential-detail {
    font-size: 14px;
    color: #7A9E7E;
    margin-top: 8px;
}

/* ========================================
   EXPERTISE SECTION
   ======================================== */
.expertise-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #F9F4E8 0%, #FFFFFF 100%);
}

.expertise-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #333333;
    margin-bottom: 60px;
    text-align: center;
}

.expertise-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.expertise-list {
    list-style: none;
}

.expertise-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

.list-icon {
    color: #7A9E7E;
    font-size: 24px;
    line-height: 1;
    flex-shrink: 0;
}

.expertise-list strong {
    display: block;
    font-size: 18px;
    color: #333333;
    margin-bottom: 8px;
    font-weight: 600;
}

.expertise-list p {
    font-size: 15px;
    color: #646464;
    line-height: 1.7;
}

/* ========================================
   PERSONAL APPROACH SECTION
   ======================================== */
.personal-approach {
    padding: 80px 20px;
    background-color: #FFFFFF;
}

.approach-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.approach-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #333333;
    margin-bottom: 30px;
}

.approach-text p {
    font-size: 16px;
    line-height: 1.9;
    color: #646464;
    margin-bottom: 25px;
}

.approach-quote {
    background-color: #F9F4E8;
    padding: 30px;
    border-left: 4px solid #7A9E7E;
    margin-top: 40px;
    border-radius: 4px;
}

.approach-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.7;
}

.quote-author {
    font-size: 14px;
    color: #7A9E7E;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.approach-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ========================================
   ABOUT CTA SECTION
   ======================================== */
.about-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #7A9E7E 0%, #A56558 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #FFFFFF;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 14px;
    transition: all 0.3s;
    border-radius: 2px;
}

.cta-button.primary {
    background-color: #FFFFFF;
    color: #A56558;
}

.cta-button.primary:hover {
    background-color: #F9F4E8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button.secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.cta-button.secondary:hover {
    background-color: #FFFFFF;
    color: #7A9E7E;
    transform: translateY(-2px);
}

/* ========================================
   BLOG HERO SECTION
   ======================================== */
.blog-hero {
    background: linear-gradient(135deg, #F9F4E8 0%, #FFFFFF 50%, #F9F4E8 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(122, 158, 126, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blog-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: #333333;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-hero .subtitle {
    font-size: 18px;
    color: #646464;
    line-height: 1.7;
}

/* ========================================
   BLOG CATEGORIES FILTER
   ======================================== */
.blog-categories {
    background-color: #FFFFFF;
    padding: 30px 20px;
    border-bottom: 1px solid rgba(122, 158, 126, 0.2);

    /* position: sticky; */
    top: 90px;
    z-index: 90;
}

.categories-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 24px;
    background-color: #F9F4E8;
    border: 2px solid transparent;
    color: #646464;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 25px;
    font-family: 'Montserrat', sans-serif;
}

.category-btn:hover {
    background-color: #7A9E7E;
    color: #FFFFFF;
    border-color: #7A9E7E;
}

.category-btn.active {
    background-color: #A56558;
    color: #FFFFFF;
    border-color: #A56558;
}

/* ========================================
   FEATURED POST SECTION
   ======================================== */
.featured-post {
    padding: 60px 20px;
    background-color: #FFFFFF;
}

.featured-badge {
    display: inline-block;
    background-color: #A56558;
    color: #FFFFFF;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    border-radius: 3px;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, #F9F4E8 0%, #FFFFFF 100%);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.featured-image img {
    width: 100%;
    border-radius: 8px;
}

.featured-text .post-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: center;
}

.category-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 3px;
    text-transform: uppercase;
}

.category-tag.trauma {
    background-color: #A56558;
    color: #FFFFFF;
}

.category-tag.depression {
    background-color: #7A9E7E;
    color: #FFFFFF;
}

.category-tag.anxiety {
    background-color: #D4A574;
    color: #FFFFFF;
}

.category-tag.wellness {
    background-color: #8EBAA8;
    color: #FFFFFF;
}

.category-tag.medication {
    background-color: #B89B7E;
    color: #FFFFFF;
}

.post-meta .date,
.post-meta .read-time {
    font-size: 13px;
    color: #646464;
}

.post-meta .read-time i {
    margin-right: 5px;
}

.featured-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.featured-text p {
    font-size: 16px;
    color: #646464;
    line-height: 1.8;
    margin-bottom: 25px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #A56558;
    color: #FFFFFF;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 3px;
    transition: all 0.3s;
}

.read-more-btn:hover {
    background-color: #7A9E7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 158, 126, 0.3);
}

.read-more-btn i {
    font-size: 12px;
}

/* ========================================
   BLOG GRID SECTION
   ======================================== */
.blog-grid-section {
    padding: 80px 20px;
    background-color: #F9F4E8;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.blog-image .category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 1;
}

.blog-content {
    padding: 30px;
}

.blog-content .post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #646464;
}

.blog-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s;
}

.blog-card:hover h3 {
    color: #A56558;
}

.blog-content p {
    font-size: 15px;
    color: #646464;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7A9E7E;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.read-more-link:hover {
    color: #A56558;
    gap: 12px;
}

.read-more-link i {
    font-size: 12px;
}

/* ========================================
   LOAD MORE SECTION
   ======================================== */
.load-more-section {
    text-align: center;
}

.load-more-btn {
    background-color: #7A9E7E;
    color: #FFFFFF;
    padding: 15px 40px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.load-more-btn:hover {
    background-color: #A56558;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(165, 101, 88, 0.3);
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */
.newsletter-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #7A9E7E 0%, #A56558 100%);
}

.newsletter-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.newsletter-text p {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 35px;
    line-height: 1.7;
}

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

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #FFFFFF;
    border-radius: 3px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    background-color: rgba(255, 255, 255, 0.95);
}

.newsletter-form input:focus {
    outline: none;
    background-color: #FFFFFF;
}

.subscribe-btn {
    padding: 15px 35px;
    background-color: #FFFFFF;
    color: #7A9E7E;
    border: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background-color: #F9F4E8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ========================================
   BLOG CTA SECTION
   ======================================== */
.blog-cta {
    padding: 80px 20px;
    background-color: #F9F4E8;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #333333;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #646464;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    background-color: #A56558;
    color: #FFFFFF;
    padding: 16px 45px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 14px;
    transition: all 0.3s;
    border-radius: 3px;
}

.cta-button:hover {
    background-color: #7A9E7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(122, 158, 126, 0.3);
}

/* =========
/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .blog-hero .subtitle {
        font-size: 16px;
    }

    .categories-wrapper {
        gap: 10px;
    }

    .category-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    .featured-text h2 {
        font-size: 26px;
    }

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

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

    .cta-content h2 {
        font-size: 32px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 968px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image-section {
        max-width: 400px;
        margin: 0 auto;
    }

    .expertise-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .approach-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-text-section h1 {
        font-size: 36px;
    }

    .professional-background h2,
    .philosophy-section h2,
    .credentials-section h2,
    .expertise-section h2 {
        font-size: 32px;
    }

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

    .cta-content h2 {
        font-size: 32px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .banner-content {
        flex-direction: column;
        gap: 10px;
    }

    .hero-text-section h1 {
        font-size: 28px;
    }

    .approach-text h2 {
        font-size: 28px;
    }

    .blog-hero h1 {
        font-size: 32px;
    }

    .featured-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .newsletter-text h2 {
        font-size: 28px;
    }
}

/* ========================================
   CONTACT HERO SECTION
   ======================================== */
.contact-hero {
    background: linear-gradient(135deg, #7A9E7E 0%, #A56558 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-hero .subtitle {
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.7;
}

/* ========================================
   CONTACT INFO CARDS
   ======================================== */
.contact-info-section {
    padding: 80px 20px;
    background-color: #F9F4E8;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contact-card {
    background-color: #FFFFFF;
    padding: 50px 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(122, 158, 126, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7A9E7E 0%, #A56558 100%);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 32px;
    color: #FFFFFF;
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #333333;
    margin-bottom: 15px;
}

.info-text {
    font-size: 18px;
    color: #646464;
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.6;
}

.subtext {
    font-size: 14px;
    color: #646464;
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    color: #7A9E7E;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #A56558;
}

/* ========================================
   CONTACT FORM SECTION
   ======================================== */
.contact-form-section {
    padding: 80px 20px;
    background-color: #FFFFFF;
}

.form-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #333333;
    margin-bottom: 15px;
}

.form-intro {
    font-size: 16px;
    color: #646464;
    line-height: 1.7;
    margin-bottom: 35px;
}

.contact-form {
    background-color: #F9F4E8;
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.required {
    color: #A56558;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #333333;
    transition: border-color 0.3s;
    background-color: #FFFFFF;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7A9E7E;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
    cursor: pointer;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #A56558;
    color: #FFFFFF;
    padding: 16px 40px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
    background-color: #7A9E7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(122, 158, 126, 0.3);
}

/* ========================================
   INFO SIDEBAR
   ======================================== */
.info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-card {
    background-color: #F9F4E8;
    padding: 35px 30px;
    border-radius: 10px;
    border-left: 4px solid #7A9E7E;
}

.sidebar-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #333333;
    margin-bottom: 20px;
}

.sidebar-card p {
    font-size: 15px;
    color: #646464;
    line-height: 1.7;
    margin-bottom: 15px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(122, 158, 126, 0.2);
    font-size: 14px;
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #333333;
}

.time {
    color: #646464;
}

.insurance-list {
    list-style: none;
    margin-top: 20px;
}

.insurance-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #646464;
}

.insurance-list i {
    color: #7A9E7E;
    font-size: 14px;
}

.emergency-card {
    background-color: #FFF5F3;
    border-left-color: #A56558;
}

.emergency-icon {
    width: 60px;
    height: 60px;
    background-color: #A56558;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.emergency-icon i {
    font-size: 28px;
    color: #FFFFFF;
}

.emergency-numbers {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(165, 101, 88, 0.2);
}

.emergency-numbers p {
    margin-bottom: 15px;
}

.emergency-numbers a {
    color: #A56558;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
}

.emergency-numbers a:hover {
    text-decoration: underline;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: 80px 20px;
    background-color: #F9F4E8;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #333333;
    text-align: center;
    margin-bottom: 60px;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background-color: transparent;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #F9F4E8;
}

.faq-question i {
    font-size: 14px;
    color: #7A9E7E;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: #FAFAFA;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-size: 15px;
    color: #646464;
    line-height: 1.8;
}

/* ========================================
   MAP SECTION
   ======================================== */
.map-section {
    padding: 80px 0 0 0;
    background-color: #FFFFFF;
}

.map-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #333333;
    text-align: center;
    margin-bottom: 15px;
}

.map-intro {
    text-align: center;
    font-size: 16px;
    color: #646464;
    margin-bottom: 50px;
}

.map-container {
    width: 100%;
    height: 450px;
    margin-bottom: 50px;
}

.map-container iframe {
    filter: grayscale(20%);
}

.directions-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px 80px 20px;
}

.directions-card {
    background-color: #F9F4E8;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.directions-card h3 {
    font-size: 18px;
    color: #333333;
    margin-bottom: 15px;
    font-weight: 600;
}

.directions-card h3 i {
    color: #7A9E7E;
    margin-right: 8px;
}

.directions-card p {
    font-size: 14px;
    color: #646464;
    line-height: 1.7;
}

/* ========================================
   CONTACT CTA SECTION
   ======================================== */
.contact-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #7A9E7E 0%, #A56558 100%);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: #FFFFFF;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-button {
    display: inline-block;
    color: #FFFFFF;
    background-color: #7A9E7E;
    padding: 16px 45px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 14px;
    transition: all 0.3s;
    border-radius: 3px;
}

.cta-button:hover {
    background-color: #F9F4E8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* ========================================
   TWO COLUMN LAYOUT: BLOG + CTA
   ======================================== */
.homepage-two-column {
    padding: 80px 20px;
    background-color: #E8E3D6;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   LEFT COLUMN: BLOG SECTION
   ======================================== */
.blog-column {
    /* Inherits grid column */
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-heading h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #333333;
    margin: 0;
}

.view-all-blogs {
    color: #7A9E7E;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.view-all-blogs:hover {
    color: #A56558;
}

/* Featured Article */
.blog-featured-article {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    transition: all 0.3s;
    position: relative;
}

.blog-featured-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(122, 158, 126, 0.15);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #A56558;
    color: #FFFFFF;
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 4px;
    z-index: 10;
}

.featured-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.blog-featured-article:hover .featured-image img {
    transform: scale(1.08);
}

.featured-content {
    padding: 30px;
}

.featured-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #333333;
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s;
}

.blog-featured-article:hover h3 {
    color: #A56558;
}

.featured-content p {
    font-size: 15px;
    color: #646464;
    line-height: 1.7;
    margin-bottom: 15px;
}

.featured-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
    color: #646464;
    margin-bottom: 20px;
}

.read-article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #7A9E7E;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.read-article-link:hover {
    color: #A56558;
    gap: 12px;
}

.read-article-link i {
    font-size: 12px;
}

/* Blog List Items */
.blog-list-items {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.blog-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background-color: #FFFFFF;
    border-bottom: 1px solid rgba(122, 158, 126, 0.2);
    transition: all 0.3s;
    cursor: pointer;
}

.blog-list-item:first-child {
    border-radius: 12px 12px 0 0;
}

.blog-list-item:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.blog-list-item:hover {
    background-color: #F9F4E8;
    transform: translateX(5px);
    box-shadow: 0 3px 12px rgba(122, 158, 126, 0.08);
}

.list-item-content {
    flex: 1;
}

.list-item-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    color: #333333;
    margin-bottom: 8px;
    line-height: 1.3;
    transition: color 0.3s;
}

.blog-list-item:hover h4 {
    color: #A56558;
}

.list-category {
    display: inline-block;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 3px;
    text-transform: uppercase;
}

.list-category.depression {
    background-color: #7A9E7E;
    color: #FFFFFF;
}

.list-category.anxiety {
    background-color: #D4A574;
    color: #FFFFFF;
}

.list-category.medication {
    background-color: #B89B7E;
    color: #FFFFFF;
}

.list-date {
    font-size: 13px;
    color: #646464;
    font-weight: 500;
    white-space: nowrap;
    margin-left: 20px;
}

/* ========================================
   RIGHT COLUMN: CTA SECTION
   ======================================== */
.cta-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Primary CTA Card */
.cta-primary-card {
    background: linear-gradient(135deg, #7A9E7E 0%, #A56558 100%);
    border-radius: 12px;
    padding: 45px 35px;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(122, 158, 126, 0.25);
}

.cta-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.cta-icon i {
    font-size: 32px;
    color: #FFFFFF;
}

.cta-primary-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 15px;
}

.cta-primary-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.cta-button-large {
    display: inline-block;
    background-color: #FFFFFF;
    color: #7A9E7E;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: all 0.3s;
    margin-bottom: 20px;
}

.cta-button-large:hover {
    background-color: #F9F4E8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-note {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Quick Links Card */
.quick-links-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.quick-links-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #333333;
    margin-bottom: 20px;
}

.quick-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links-list li {
    border-bottom: 1px solid rgba(122, 158, 126, 0.2);
}

.quick-links-list li:last-child {
    border-bottom: none;
}

.quick-links-list a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 10px;
    text-decoration: none;
    color: #333333;
    transition: all 0.3s;
}

.quick-links-list a:hover {
    color: #A56558;
    transform: translateX(5px);
}

.quick-links-list a i:first-child {
    color: #7A9E7E;
    font-size: 18px;
    width: 25px;
}

.quick-links-list a span {
    flex: 1;
    font-weight: 500;
    font-size: 15px;
}

.quick-links-list a i:last-child {
    color: #7A9E7E;
    font-size: 12px;
}

/* Office Hours Card */
.office-hours-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid #F9F4E8;
}

.office-hours-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: #333333;
    margin-bottom: 20px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(122, 158, 126, 0.2);
    font-size: 14px;
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #333333;
}

.time {
    color: #646464;
}

.phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #7A9E7E;
    color: #FFFFFF;
    padding: 14px 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s;
}

.phone-link:hover {
    background-color: #A56558;
    transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 968px) {
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .homepage-two-column {
        padding: 60px 20px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .featured-image {
        height: 200px;
    }

    .featured-content {
        padding: 25px 20px;
    }

    .featured-content h3 {
        font-size: 20px;
    }

    .blog-list-item {
        padding: 18px 20px;
    }

    .list-item-content h4 {
        font-size: 16px;
    }

    .cta-primary-card {
        padding: 40px 30px;
    }

    .cta-primary-card h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .two-column-grid {
        gap: 30px;
    }

    .featured-image {
        height: 180px;
    }

    .blog-list-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .list-date {
        margin-left: 0;
    }

    .quick-links-list a {
        padding: 12px 5px;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .blog-half-width {
        max-width: 100%;
    }

    .featured-image {
        height: 200px;
    }

    .featured-content {
        padding: 25px;

        /* ========================================
   FOOTER - CORRECTED LAYOUT
   ======================================== */
        .main-footer {
            background-color: #F9F4E8;
            padding: 30px 20px;
            border-top: 1px solid rgba(122, 158, 126, 0.2);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            align-items: center;
            gap: 20px;
        }

        .copyright {
            font-size: 12px;
            color: #646464;
            letter-spacing: 1px;
            margin: 0;
            text-align: left;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            justify-content: center;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background-color: #A56558;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            text-decoration: none;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background-color: #7A9E7E;
            transform: translateY(-3px);
        }

        .rights {
            font-size: 12px;
            color: #646464;
            letter-spacing: 1px;
            margin: 0;
            text-align: right;
        }

        /* ========================================
   RESPONSIVE DESIGN
   ======================================== */
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .copyright,
            .rights {
                text-align: center;
            }
        }

        /* ========================================
   RESPONSIVE DESIGN
   ======================================== */
        @media (max-width: 968px) {
            .form-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-cards {
                grid-template-columns: 1fr;
            }

            .directions-info {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .main-nav ul {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .contact-hero h1 {
                font-size: 40px;
            }

            .contact-hero .subtitle {
                font-size: 16px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .contact-form {
                padding: 30px 25px;
            }

            .faq-section h2,
            .map-section h2,
            .cta-content h2 {
                font-size: 32px;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .contact-hero h1 {
                font-size: 32px;
            }

            .form-container h2 {
                font-size: 28px;
            }

            .contact-form {
                padding: 25px 20px;
            }
        }

        /* ========================================
   RESPONSIVE DESIGN
   ======================================== */
        @media (max-width: 968px) {
            .founder-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .founder-image {
                max-width: 400px;
                margin: 0 auto;
            }

            .founder-image img {
                height: 450px;
            }

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

        @media (max-width: 768px) {
            .founder-section {
                padding: 60px 20px;
            }

            .founder-text h2 {
                font-size: 38px;
            }

            .founder-text h3 {
                font-size: 28px;
            }

            .founder-image img {
                height: 400px;
            }

            .image-accent {
                top: 15px;
                left: 15px;
            }
        }

        @media (max-width: 480px) {
            .founder-image {
                max-width: 100%;
            }

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

            .founder-text h2 {
                font-size: 32px;
            }

            .founder-text h3 {
                font-size: 24px;
            }

            .bio-text {
                font-size: 15px;
            }
        }

        /* ========================================
   GLOBAL STYLES
   ======================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: #333333;
            line-height: 1.6;
            background-color: #FFFFFF;
        }

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

        /* ========================================
   TOP BANNER
   ======================================== */
        .top-banner {
            background-color: #A56558;
            padding: 8px 20px;
            text-align: center;
        }

        .banner-content {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .banner-content span {
            color: #FFFFFF;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        /* ========================================
   HEADER & NAVIGATION
   ======================================== */
        .main-header {
            background-color: #FFFFFF;
            padding: 15px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

        .logo-text {
            display: flex;
            flex-direction: column;
            text-decoration: none;
            line-height: 1;
        }

        .logo-peaceful {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: #7A9E7E;
            letter-spacing: 1px;
        }

        .logo-thoughts {
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 400;
            color: #646464;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-top: -2px;
        }

        .logo-text:hover .logo-peaceful {
            color: #A56558;
        }

        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
            margin: 0;
            padding: 0;
        }

        .main-nav a {
            text-decoration: none;
            color: #333333;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: color 0.3s;
            position: relative;
        }

        .main-nav a:hover,
        .main-nav a.active {
            color: #A56558;
        }

        .main-nav a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #A56558;
        }

        /* ========================================
   BREADCRUMB
   ======================================== */
        .breadcrumb-section {
            padding: 20px 0;
            background-color: #F9F4E8;
            border-bottom: 1px solid rgba(122, 158, 126, 0.2);
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }

        .breadcrumb a {
            color: #7A9E7E;
            text-decoration: none;
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: #A56558;
        }

        .breadcrumb .separator {
            color: #646464;
        }

        .breadcrumb .current {
            color: #646464;
        }

        /* ========================================
   POST HEADER
   ======================================== */
        .post-header {
            padding: 60px 20px 40px;
            background-color: #F9F4E8;
        }

        .post-header-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .post-category-badge {
            display: inline-block;
            padding: 8px 18px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            border-radius: 5px;
            text-transform: uppercase;
            margin-bottom: 25px;
        }

        .post-category-badge.trauma {
            background-color: #A56558;
            color: #FFFFFF;
        }

        .post-header h1 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            color: #333333;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .post-meta-header {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #646464;
        }

        .meta-item i {
            color: #7A9E7E;
            font-size: 13px;
        }

        /* ========================================
   FEATURED IMAGE
   ======================================== */
        .post-featured-image {
            padding: 0 20px 60px;
            background-color: #F9F4E8;
        }

        .post-featured-image img {
            width: 100%;
            max-width: 1000px;
            margin: 0 auto;
            display: block;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }

        /* ========================================
   BLOG POST CONTENT
   ======================================== */
        .blog-post-content {
            padding: 80px 20px;
            background-color: #FFFFFF;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Main Content */
        .main-content {
            max-width: 750px;
        }

        .post-intro {
            margin-bottom: 40px;
        }

        .lead-paragraph {
            font-size: 20px;
            line-height: 1.8;
            color: #646464;
            font-weight: 400;
        }

        .main-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            color: #333333;
            margin: 50px 0 20px;
            line-height: 1.3;
        }

        .main-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 24px;
            color: #333333;
            margin: 35px 0 15px;
            line-height: 1.3;
        }

        .main-content h4 {
            font-size: 20px;
            color: #333333;
            margin: 25px 0 12px;
            font-weight: 600;
        }

        .main-content p {
            font-size: 17px;
            line-height: 1.8;
            color: #646464;
            margin-bottom: 20px;
        }

        .content-list {
            margin: 25px 0 25px 30px;
        }

        .content-list li {
            font-size: 17px;
            line-height: 1.8;
            color: #646464;
            margin-bottom: 12px;
        }

        /* Pull Quote */
        .pull-quote {
            background-color: #F9F4E8;
            border-left: 5px solid #7A9E7E;
            padding: 35px 40px;
            margin: 40px 0;
            border-radius: 0 8px 8px 0;
        }

        .pull-quote p {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-style: italic;
            color: #333333;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .pull-quote cite {
            font-size: 15px;
            color: #7A9E7E;
            font-weight: 600;
            font-style: normal;
        }

        /* Info Box */
        .info-box {
            background-color: #F9F4E8;
            border-radius: 10px;
            padding: 30px;
            margin: 40px 0;
            display: flex;
            gap: 20px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background-color: #7A9E7E;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-icon i {
            font-size: 22px;
            color: #FFFFFF;
        }

        .info-content h4 {
            font-size: 18px;
            color: #333333;
            margin: 0 0 12px 0;
            font-weight: 600;
        }

        .info-content p {
            font-size: 16px;
            margin: 0;
        }

        /* Share Section */
        .post-share {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid #F9F4E8;
        }

        .post-share h4 {
            font-size: 18px;
            color: #333333;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .share-buttons {
            display: flex;
            gap: 12px;
        }

        .share-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: #FFFFFF;
            transition: all 0.3s;
        }

        .share-btn.facebook {
            background-color: #1877F2;
        }

        .share-btn.twitter {
            background-color: #1DA1F2;
        }

        .share-btn.linkedin {
            background-color: #0A66C2;
        }

        .share-btn.email {
            background-color: #7A9E7E;
        }

        .share-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* ========================================
   SIDEBAR
   ======================================== */
        .post-sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* Author Card */
        .author-card {
            background-color: #F9F4E8;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
        }

        .author-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 4px solid #7A9E7E;
        }

        .author-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            color: #333333;
            margin-bottom: 12px;
        }

        .author-card p {
            font-size: 14px;
            color: #646464;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .author-link {
            display: inline-block;
            color: #7A9E7E;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: color 0.3s;
        }

        .author-link:hover {
            color: #A56558;
        }

        /* Sidebar CTA */
        .sidebar-cta {
            background: linear-gradient(135deg, #7A9E7E 0%, #A56558 100%);
            border-radius: 12px;
            padding: 35px 30px;
            text-align: center;
            color: #FFFFFF;
        }

        .sidebar-cta h3 {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            color: #FFFFFF;
            margin-bottom: 15px;
        }

        .sidebar-cta p {
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .cta-btn {
            display: inline-block;
            background-color: #FFFFFF;
            color: #7A9E7E;
            padding: 14px 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            border-radius: 5px;
            transition: all 0.3s;
        }

        .cta-btn:hover {
            background-color: #F9F4E8;
            transform: translateY(-2px);
        }

        /* Sidebar Categories */
        .sidebar-categories,
        .sidebar-recent {
            background-color: #FFFFFF;
            border: 2px solid #F9F4E8;
            border-radius: 12px;
            padding: 30px;
        }

        .sidebar-categories h3,
        .sidebar-recent h3 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            color: #333333;
            margin-bottom: 20px;
        }

        .sidebar-categories ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-categories li {
            border-bottom: 1px solid #F9F4E8;
        }

        .sidebar-categories li:last-child {
            border-bottom: none;
        }

        .sidebar-categories a {
            display: block;
            padding: 12px 10px;
            color: #646464;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s;
        }

        .sidebar-categories a:hover {
            color: #A56558;
            transform: translateX(5px);
        }

        /* Recent Posts */
        .recent-post-item {
            padding: 15px 0;
            border-bottom: 1px solid #F9F4E8;
        }

        .recent-post-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .recent-post-item a {
            text-decoration: none;
        }

        .recent-post-item h4 {
            font-size: 15px;
            color: #333333;
            margin-bottom: 8px;
            line-height: 1.4;
            transition: color 0.3s;
        }

        .recent-post-item:hover h4 {
            color: #A56558;
        }

        .recent-date {
            font-size: 13px;
            color: #646464;
        }

        /* ========================================
   RELATED POSTS
   ======================================== */
        .related-posts {
            padding: 80px 20px;
            background-color: #F9F4E8;
        }

        .related-posts h2 {
            font-family: 'Playfair Display', serif;
            font-size: 38px;
            color: #333333;
            text-align: center;
            margin-bottom: 50px;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .related-card {
            background-color: #FFFFFF;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s;
        }

        .related-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(122, 158, 126, 0.15);
        }

        .related-image {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

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

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

        .related-category {
            position: absolute;
            top: 15px;
            left: 15px;
            padding: 6px 14px;
            font-size: 10px;
            font-weight: 700;
            letter-spacing: 1px;
            border-radius: 4px;
            text-transform: uppercase;
        }

        .related-category.trauma {
            background-color: #A56558;
            color: #FFFFFF;
        }

        .related-category.wellness {
            background-color: #8EBAA8;
            color: #FFFFFF;
        }

        .related-category.depression {
            background-color: #7A9E7E;
            color: #FFFFFF;
        }

        .related-content {
            padding: 25px;
        }

        .related-content h3 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            color: #333333;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .related-content p {
            font-size: 14px;
            color: #646464;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .related-link {
            color: #7A9E7E;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: color 0.3s;
        }

        .related-link:hover {
            color: #A5;
        }
    }
}