/* ========================================== */
/* COLOR PALETTE & VARIABLES                  */
/* ========================================== */
:root {
    --bg-light: #ffffee;
    --bg-cream: #f4e9cd;
    --brand-green: #294410;
    --brand-dark: #0d1405;
    --brand-accent: #f0a938;
    --text-main: #0d1405;
    --text-light: #ffffee;
}

/* ========================================== */
/* BASE STYLES & TYPOGRAPHY                   */
/* ========================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px; /* Prevents fixed header from overlapping titles */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-main);
    line-height: 1.75;  
    background-color: var(--bg-light);
    font-size: 16px;  
    -webkit-font-smoothing: antialiased; 
}

/* Section Title */
.section-title {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    font-size: 2.5rem; 
    line-height: 1.2;
    text-transform: none; 
    margin-bottom: 2rem;
    letter-spacing: normal;
    color: var(--brand-dark);
}

h1, h2, h3, h4 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 400;
    color: var(--brand-dark);
}

.quote-text {
    font-family: "Playfair Display", Georgia, serif;
    font-style: italic;
    color: var(--brand-dark);
    font-size: 1.5rem; 
    line-height: 1.8;
}

/* Display (H1) */
h1 { 
    font-size: 5.7rem; 
    line-height: 1.1; 
    margin-bottom: 1rem; 
    letter-spacing: -0.02em;
}

/* Headline-md (H2) */
h2 { 
    font-size: 2rem; 
    margin-bottom: 1.5rem; 
    line-height: 1.3;
}

h4 { 
    font-size: 1.2rem; 
    margin-bottom: 0.5rem; 
}

p { 
    margin-bottom: 1rem; 
}

.italic { 
    font-style: italic; 
}

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

.light-text { 
    color: var(--text-light); 
}

.mt-medium { 
    margin-top: 2rem; 
}

.mt-large { 
    margin-top: 4rem; 
}

.mb-medium { 
    margin-bottom: 2rem; 
}

.narrow-margin { 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto; 
    font-size: 1.10rem; 
}

/* ========================================== */
/* FIXED TOP NAVIGATION (DESKTOP)             */
/* ========================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(13, 20, 5, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.25rem;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 0.05em;
}

/* Hard reset: prevents the default checkbox square from rendering anywhere */
.menu-checkbox {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    pointer-events: none !important;
}

/* Hidden on desktop layout */
.hamburger-btn {
    display: none; 
}

.menu-overlay {
    display: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-light);
}

.nav-links a.nav-cta {
    color: var(--brand-accent);
    font-weight: 600;
}

/* ========================================== */
/* LAYOUT CONTAINERS                          */
/* ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem; 
}

.narrow {
    max-width: 800px;
}

/* ========================================== */
/* SECTION BACKGROUNDS + ANALOG NOISE GRAIN    */
/* ========================================== */
.light-section { background-color: var(--bg-light); }
.cream-section { background-color: var(--bg-cream); }

.dark-section { 
    background-color: var(--brand-dark); 
    color: var(--text-light); 
}

.light-section, 
.cream-section {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.dark-section p {
    font-weight: 300;         
    letter-spacing: 0.015em;  
}

.dark-section h3, 
.dark-section h4 {
    letter-spacing: 0.01em;   
}

/* ========================================== */
/* HERO COMPONENT                             */
/* ========================================== */
.hero {
    position: relative;
    background-color: var(--brand-dark);
    min-height: 90vh; 
    display: flex;
    align-items: center;
    width: 100%;
    padding-top: 70px; 
}

.hero-image-area {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13, 20, 5, 0.95) 0%, rgba(13, 20, 5, 0.7) 40%, transparent 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 5rem;    
    padding-bottom: 6.5rem; 
}

.hero-content {
    max-width: 650px;
}

.hero-title-area, .hero-text-area {
    color: var(--text-light);
}

.hero-title-area h1, .hero-title-area h2 {
    color: var(--text-light);
}

.hero-text-area {
    margin-top: 5rem;
}

.hero-text-area p {
    font-size: 1.125rem; 
    line-height: 1.8;
    letter-spacing: 0.01em;
}

/* ========================================== */
/* BUTTONS                                    */
/* ========================================== */
.btn-primary {
    display: inline-block;
    background-color: var(--brand-accent);
    color: var(--brand-dark);
    text-decoration: none;
    padding: 1.1rem 2.8rem;
    font-size: 1.10rem;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 2rem;
    letter-spacing: 0.05em;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), 
                background-color 0.4s cubic-bezier(0.25, 1, 0.5, 1),
                box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-primary:hover {
    background-color: #e59a27;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(240, 169, 56, 0.15); 
}

/* ========================================== */
/* LISTS & ICONS                              */
/* ========================================== */
.circle-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 7px;
    background-color: transparent;
}

.circle-icon.green { 
    border: 2px solid var(--brand-green); 
    background-color: var(--bg-light); 
}

.circle-icon.orange { 
    border: 2px solid var(--brand-accent); 
    background-color: var(--brand-dark); 
}

.methods-list {
    display: block;
    column-count: 2;
    column-gap: 4.5rem;       
    max-width: 850px;         
    margin: 3.5rem auto 0 auto;
}

.methods-list .list-item-plain {
    break-inside: avoid;
    display: flex;
    align-items: center;      
    gap: 1.2rem;
    padding: 1.1rem 0;        
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); 
}

.methods-list .circle-icon.green {
    width: 6px;               
    height: 6px;
    background-color: var(--brand-accent); 
    border: none;             
    margin-top: 0;            
    border-radius: 50%;
    opacity: 0.8;
    flex-shrink: 0;
}

.methods-list .list-item-plain p {
    font-size: 1.10rem;
    font-weight: 300;         
    letter-spacing: 0.02em;
    line-height: 1.5;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.9); 
}

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

.list-item-plain {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.list-item-plain p {
    margin-bottom: 0;
}

/* ========================================== */
/* EDITORIAL QUALIFICATION LAYOUT (DESKTOP)   */
/* ========================================== */
.qualification-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr; 
    gap: 6rem;
    align-items: start;
}

.qualification-header {
    position: -webkit-sticky;
    position: sticky;
    top: 6rem; 
}

.qualification-header .section-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: left;
}

.qualification-list {
    display: flex;
    flex-direction: column;
}

.qualification-item {
    display: flex;
    gap: 1.5rem; 
    padding: 1.8rem 0;
    border-bottom: 1px solid rgba(13, 20, 5, 0.08); 
    align-items: center; 
}

.qualification-item:first-child {
    padding-top: 0;
}

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

.qualification-dot {
    width: 6px;
    height: 6px;
    background-color: var(--brand-accent); 
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.9;
}

.qualification-item p {
    font-size: 1.10rem;
    line-height: 1.7;
    color: var(--brand-dark);
    margin-bottom: 0;
}

/* ========================================== */
/* EDITORIAL LAYOUT FOR "WHAT IT IS" (DESKTOP)*/
/* ========================================== */
.editorial-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr; 
    gap: 6rem;
    align-items: start;
}

.editorial-sidebar .section-title {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-align: left;
}

.editorial-body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem; 
}

.editorial-body p {
    font-size: 1.10rem;
    line-height: 1.75;
    color: var(--brand-dark);
    margin-bottom: 0;
    text-align: left; 
}

.editorial-divider {
    height: 1px;
    background-color: rgba(13, 20, 5, 0.08);
    margin: 5rem 0;
}

/* ========================================== */
/* UNIFIED GREEN SUBTITLES & CALLOUT          */
/* ========================================== */
.callout-title,
.qualification-callout,
.editorial-lead,
.editorial-quote {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.7rem;           
    color: var(--brand-green); 
    line-height: 1.4;
    font-weight: 600;          
    font-style: normal;        
}

.callout-title {
    text-align: center;
}

.qualification-callout,
.editorial-lead,
.editorial-quote {
    text-align: left;
}

.quote-banner {
    border-top: 1px solid rgba(13, 20, 5, 0.08);
    border-bottom: 1px solid rgba(13, 20, 5, 0.08);
}

.quote-banner .container {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.qualification-callout {
    margin-top: 1.5rem;
}

.editorial-quote {
    margin-top: 1rem;
}

/* ========================================== */
/* PROCESS GRIDS                              */
/* ========================================== */
.three-col-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.f4e9cd-bg {
    background-color: var(--bg-cream);
    color: var(--brand-dark);
}

.card-title {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--brand-dark);
    border-bottom: 1px solid rgba(13, 20, 5, 0.25); 
    padding-bottom: 1.2rem; 
    margin-bottom: 1.2rem; 
}

.card p {
    font-size: 1.10rem; 
    font-weight: 400;   
    line-height: 1.7;
}

/* ========================================== */
/* PREMIUM OUTCOMES LIST                      */
/* ========================================== */
.outcomes-list {
    max-width: 600px;
    margin: 3.5rem auto 0 auto;
    display: flex;
    flex-direction: column;
}

.outcome-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.6rem 0;
    border-bottom: 1px solid rgba(13, 20, 5, 0.08); 
}

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

.outcome-item p {
    font-size: 1.10rem;
    font-weight: 400;
    color: var(--brand-dark);
    margin-bottom: 0;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

/* ========================================== */
/* NOT FOR YOU LIST STYLE                     */
/* ========================================== */
.not-for-you-list {
    max-width: 850px;
    margin: 3.5rem auto 0 auto;
    gap: 0 !important; 
}

.not-for-you-list .list-item-plain {
    display: flex;
    align-items: center; 
    gap: 1.2rem;
    padding: 1.1rem 0; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); 
}

.not-for-you-list .list-item-plain:last-child {
    border-bottom: none; 
}

.not-for-you-list .list-item-plain p {
    font-size: 1.10rem;
    font-weight: 300; 
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9); 
}

.cross-icon {
    position: relative;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    opacity: 0.85;
}

.cross-icon::before,
.cross-icon::after {
    content: '';
    position: absolute;
    background-color: var(--brand-accent); 
    width: 10px;
    height: 1.5px; 
    top: 50%;
    left: 0;
    margin-top: -0.75px; 
}

.cross-icon::before {
    transform: rotate(45deg);
}

.cross-icon::after {
    transform: rotate(-45deg);
}

/* ========================================== */
/* PREMIUM TESTIMONIALS                       */
/* ========================================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 4px;
    border-left: 3px solid var(--brand-accent); 
    box-shadow: 0 10px 30px rgba(13, 20, 5, 0.03); 
}

.client-info h4 {
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    color: #444;
}

/* ========================================== */
/* INVESTMENT SECTION                         */
/* ========================================== */
.investment-card {
    background-color: var(--brand-dark);
    padding: 4rem;
    border-radius: 8px;
    max-width: 600px;  
    margin: 0 auto;    
}

.investment-card .section-title {
    margin-bottom: 2.8rem; 
    padding-bottom: 0;
    border-bottom: none;
}

.price-highlight {
    color: var(--brand-accent);
    font-weight: 500; 
}

.subtitle-small {
    font-size: 1.3rem;      
    margin-top: 0;          
    margin-bottom: 0.5rem;  
}

.investment-list {
    display: flex;
    flex-direction: column;
    margin-top: 0.5rem; 
}

.investment-list .list-item-plain {
    display: flex;
    align-items: center;     
    gap: 1.2rem;
    padding: 1.1rem 0;       
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); 
}

.investment-list .list-item-plain:last-child {
    border-bottom: none;     
}

.investment-list .list-item-plain p {
    font-size: 1.10rem;      
    font-weight: 300;
    letter-spacing: 0.02em;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.gold-bead {
    width: 6px;
    height: 6px;
    background-color: var(--brand-accent);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.9;
}

/* ========================================== */
/* ABOUT ME                                   */
/* ========================================== */
.about-grid {
    display: flex;
    gap: 4rem;
    align-items: stretch;
}

.about-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center 42%;
    border-radius: 8px;
}

.about-text {
    flex: 1;
}

.about-text p:not(.subtitle-orange) {
    font-size: 1.10rem; 
    line-height: 1.75;
}

.about-text h2 {
    margin-bottom: 0.5rem;
}

.subtitle-orange {
    font-family: 'Inter', sans-serif;
    font-size: 15px;         
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;   
    line-height: 1.0;
    color: var(--brand-accent);
    margin-bottom: 1.5rem;
}

/* ========================================== */
/* MEDIUM SCREENS & LANDSCAPE TABLETS         */
/* ========================================== */
@media (min-width: 901px) and (max-width: 1200px) {
    .hero-content {
        max-width: 500px; 
    }
    
    .hero-bg-image {
        background-position: 85% center; 
    }

    .hero-overlay {
        background: linear-gradient(
            to right, 
            rgba(13, 20, 5, 0.95) 0%, 
            rgba(13, 20, 5, 0.8) 55%, 
            transparent 100%
        );
    }
}

/* ========================================== */
/* MOBILE RESPONSIVENESS (MAX 900px)          */
/* ========================================== */
@media (max-width: 900px) {
    html {
        scroll-padding-top: 20px; /* Reset header offset spacing completely */
    }

    /* Floating header bar with absolute transparency */
    .main-nav {
        position: fixed;
        background-color: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: none;
    }

    .nav-container {
        padding: 1.5rem 2rem;
        display: flex;
        justify-content: flex-end; /* Aligns hamburger tightly to the top-right */
        align-items: center;
        width: 100%;
        position: relative;
    }

    .nav-logo {
        display: none !important; /* Completely removed on mobile layout */
    }

    /* Minimal Top-Right Hamburger Icon */
    .hamburger-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 22px;
        height: 15px;
        cursor: pointer;
        z-index: 1001; /* Renders above slide-out drawer overlay */
    }

    .hamburger-line {
        width: 100%;
        height: 1.8px;
        background-color: var(--brand-accent);
        transition: all 0.3s ease;
    }

    /* Slim Right Side Drawer Menu */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0; 
        left: auto;
        width: 280px; /* Slim, aesthetic drawer width */
        height: 100vh;
        background-color: var(--brand-dark);
        border-left: 1px solid rgba(255, 255, 255, 0.05); /* Structural divider */
        border-right: none;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 6rem 2rem 2rem 2rem; 
        gap: 1.8rem;
        transform: translateX(100%); /* Slides offscreen to the right by default */
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 999;
    }

    .nav-links a {
        font-family: "Playfair Display", Georgia, serif;
        font-size: 1.4rem;
        text-transform: none; 
        color: var(--text-light);
        letter-spacing: 0;
        width: 100%;
        padding: 0.25rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03); 
    }

    .nav-links a.nav-cta {
        color: var(--brand-accent);
        border-bottom: none;
    }

    /* CSS Toggle active slide-in action */
    .menu-checkbox:checked ~ .nav-links {
        transform: translateX(0);
    }

    /* Smoothly rotate hamburger lines to 'X' inside drawer layout boundaries */
    .menu-checkbox:checked ~ .hamburger-btn .hamburger-line:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
        background-color: var(--text-light); /* Swaps to off-white over dark drawer */
    }
    .menu-checkbox:checked ~ .hamburger-btn .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .menu-checkbox:checked ~ .hamburger-btn .hamburger-line:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
        background-color: var(--text-light);
    }

    /* Premium Blurred Page Dimmer Background Overlay */
    .menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background-color: rgba(13, 20, 5, 0.4); 
        backdrop-filter: blur(4px); 
        -webkit-backdrop-filter: blur(4px);
        z-index: 998; 
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }

    .menu-checkbox:checked ~ .menu-overlay {
        opacity: 1;
        pointer-events: auto; /* Click anywhere on blurred body to exit menu */
    }

    /* Mobile Body/Hero offsets reset */
    .hero { 
        min-height: auto;
        padding-top: 0; 
        display: block; 
        position: relative;
        background-color: var(--brand-dark);
    }
    
    .hero-image-area {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 55vh;
        min-height: 400px;
        z-index: 1;
    }
    
    .hero-bg-image {
        position: relative;
        width: 100%;
        height: 55vh; 
        min-height: 400px;
        background-position: 60% center; 
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: 
            linear-gradient(to right, rgba(13, 20, 5, 0.95) 0%, rgba(13, 20, 5, 0.4) 65%, transparent 100%),
            linear-gradient(to bottom, transparent 40%, var(--brand-dark) 100%);
        z-index: 2;
    }

    .hero .container {
        padding: 0;
        position: relative;
        z-index: 3;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title-area {
        height: 55vh; 
        min-height: 400px;
        display: flex;
        flex-direction: column;
        justify-content: center; 
        padding: 0 35% 0 1.5rem; 
        box-sizing: border-box;
        transform: translateY(-2rem); 
    }

    .hero-title-area h1 { 
        font-family: "Playfair Display", Georgia, serif;
        font-size: 3.6rem;
        white-space: nowrap; 
        margin-bottom: 1.2rem; 
        color: var(--text-light);
    }    

    .hero-title-area h2 { 
        font-family: "Playfair Display", Georgia, serif;
        font-size: 1.35rem; 
        margin-bottom: 0; 
        line-height: 1.4; 
        color: var(--text-light);
    }
    
    .hero-text-area {
        margin-top: -1.5rem; 
        padding: 0 2rem 3rem 2rem; 
        background-color: transparent; 
    }
    
    .hero-text-area p {
        font-size: 1.10rem; 
        line-height: 1.6;
    }

    .section-title {
        font-size: 2rem !important; 
        line-height: 1.2;
    }
    
    .btn-primary { 
        padding: 0.8rem 1.5rem; 
        font-size: 1rem; 
        margin-top: 1.5rem; 
    }
    
    .qualification-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .qualification-header {
        position: static; 
    }

    .qualification-header .section-title {
        font-size: 2.2rem !important;
        text-align: center;
    }

    .qualification-item {
        padding: 1.5rem 0;
        gap: 1.2rem; 
    }

    .qualification-item:first-child {
        padding-top: 1.5rem;
        border-top: 1px solid rgba(13, 20, 5, 0.08); 
    }

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

    .editorial-sidebar {
        position: static; 
    }

    .editorial-sidebar .section-title {
        font-size: 2.2rem !important;
        text-align: center;
    }

    .editorial-body p {
        text-align: left; 
    }

    .editorial-divider {
        margin: 3rem 0;
    }

    .callout-title,
    .qualification-callout,
    .editorial-lead,
    .editorial-quote {
        font-size: 1.25rem !important; 
        text-align: center;
    }

    .quote-banner .container {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .grid-list-2col, .three-col-grid, .methods-list, .testimonial-grid, .about-grid {
        grid-template-columns: 1fr;
    }

    .methods-list {
        column-count: 1;
        column-gap: 0;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .investment-card {
        padding: 2rem;
    }
    
    .outcome-item {
        padding: 1.2rem 0;
        gap: 1.2rem;
    }
    
    .outcome-item p {
        font-size: 1.10rem;
    }

    .about-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .about-image {
        min-height: 350px;
        width: 100%;
    }

    .about-text {
        text-align: left; 
    }

    .about-text h2, 
    .about-text .subtitle-orange {
        text-align: center; 
    }

    @media (max-width: 334px) {
        .hero-title-area h1 { 
            font-size: 2.8rem; 
        }
    }
}