/* ============================================
   CONSULTING PAGE STYLES
   Cream + Tan/Brown Theme (Matching Home Page)
   ============================================ */

/* Font Face Declarations */
@font-face {
    font-family: "Playfair Display";
    font-weight: 500;
    font-display: swap;
    src: var(--lj-font-65d0c3b53fd6) format("woff2"),
        var(--lj-font-aed59634dc34) format("woff");
}

@font-face {
    font-family: "Playfair Display";
    font-weight: 900;
    font-display: swap;
    src: var(--lj-font-a8e193d32df5) format("woff2"),
        var(--lj-font-1d0ad30173bd) format("woff");
}

@font-face {
    font-family: "Inclusive Sans";
    font-weight: 400;
    font-display: swap;
    src: var(--lj-font-e99f2dc4c893) format("woff2"),
        var(--lj-font-e99f2dc4c893) format("woff");
}

@font-face {
    font-family: "Inclusive Sans";
    font-weight: 500;
    font-display: swap;
    src: var(--lj-font-e99f2dc4c893) format("woff2"),
        var(--lj-font-e99f2dc4c893) format("woff");
}

@font-face {
    font-family: "Inclusive Sans";
    font-weight: 600;
    font-display: swap;
    src: var(--lj-font-e99f2dc4c893) format("woff2"),
        var(--lj-font-e99f2dc4c893) format("woff");
}

/* CSS Variables - Cream + Tan/Brown Theme (Matching Home Page) */
:root {
    --color-primary: #D2B48C;
    --color-primary-dark: #995A3B;
    --color-primary-light: #FCF1DD;
    --color-text: #17110A;
    --color-text-light: #17110A;
    --color-text-muted: #17110A;
    --color-bg: #FCF1DD;
    --color-bg-light: #FCF1DD;
    --color-bg-accent: #BD9450;
    --color-border: rgba(153, 90, 59, 0.15);
    --color-border-light: rgba(0, 0, 0, 0.08);

    --font-heading: "Playfair Display", serif;
    --font-body: "Inclusive Sans", sans-serif;
    --font-ui: "Playfair Display", serif;

    --container-max: 1400px;
    --container-narrow: 900px;
    --transition-base: 0.3s ease;
    --spacing-section: 100px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

/* Skip Links */
.skip-link {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 16px 24px;
    background: var(--color-primary);
    color: #fff;
    font-weight: 600;
}

.skip-link:focus {
    left: 50%;
    transform: translateX(-50%);
    top: 10px;
}

/* ============================================
   HERO SECTION (Matching Home Page)
   ============================================ */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: #1a1a2e;
    overflow: hidden;
}

.hero-image-mobile {
    display: none;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-image-wrapper .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(-1);
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
}

.hero-content {
    max-width: 1100px;
    padding: 0 100px;
    margin-right: auto;
    transform: translateY(-20%) translateX(70px);
    padding-top: 150px;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #D2B48C;
    margin-bottom: 32px;
    margin-top: 80px;
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 48px;
    white-space: normal;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: var(--color-primary);
    color: #17110A;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(153, 90, 59, 0.2);
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(153, 90, 59, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background: #FCF1DD;
    border: 2px solid var(--color-primary);
    color: #17110A;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: #17110A;
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D2B48C;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   STATS SECTION (Matching Home Page)
   ============================================ */
.stats-section {
    background: #FCF1DD;
    padding: 30px 0;
}

.stats-section .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 920px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 180px;
    gap: 6px;
    padding: 0 30px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:nth-child(2) .stat-number {
    margin-top: -0.3em;
}

.stat-number {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    min-height: 1.2em;
}

.stat-number .count {
    color: var(--color-text);
}

.stat-number .suffix {
    color: var(--color-primary);
    font-size: 0.5em;
    line-height: 1;
    margin-top: 0.1em;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(16, 16, 16, 0.65);
}

/* ============================================
   LOGOS SECTION (Matching Home Page)
   ============================================ */
.logos-section {
    background: var(--color-primary);
    padding: 48px 0;
}

.logos-section .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

.logos-carousel {
    display: flex;
    gap: 0;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-position: center;
    mask-position: center;
}

.logos-track {
    display: flex;
    gap: 48px;
    animation: scroll-logos 40s linear infinite;
    padding: 0 40px;
}

.logo-slide {
    flex-shrink: 0;
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   CONSULTING INTRO SECTION
   ============================================ */
.consulting-intro-section {
    padding: 120px 24px;
    background: linear-gradient(180deg, #FCF1DD 0%, #F5E6C8 100%);
    position: relative;
    overflow: hidden;
}

.consulting-intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.consulting-intro-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    position: relative;
    z-index: 1;
}

.consulting-intro-eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-light);
    opacity: 0.7;
}

.consulting-intro-title {
    font-family: var(--font-heading);
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 900;
    color: var(--color-text);
    line-height: 1.05;
    margin: 0;
}

.consulting-intro-title em {
    font-style: italic;
}

.consulting-intro-text {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.8;
    color: var(--color-text-light);
    max-width: 720px;
    margin: 0;
}

.consulting-intro-section .btn-primary {
    margin-top: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    color: var(--color-text);
    line-height: 1.05;
}

.section-title em {
    font-style: italic;
    color: #000;
}

/* ============================================
   INTRO SECTION
   ============================================ */
.intro-section {
    padding: 100px 24px;
    background: #FCF1DD;
}

.intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-heading h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 24px;
    line-height: 1.15;
}

.intro-heading h2 em {
    font-style: normal;
}

.intro-heading .btn-primary {
    margin-top: 8px;
}

.intro-text p {
    font-family: var(--font-body);
    font-size: 1.31rem;
    font-weight: 600;
    line-height: 1.85;
    color: var(--color-text-light);
}

/* ============================================
   WHY WORK WITH SECTION
   ============================================ */
.why-section {
    position: relative;
    background: #F5E6C8;
    overflow: hidden;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.why-header {
    margin-bottom: 40px;
    text-align: center;
}

.why-header h2 {
    font-family: var(--font-heading) !important;
    font-size: clamp(2rem, 4vw, 2.75rem) !important;
    font-weight: 900 !important;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.1;
}

.why-header>p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    height: 400px;
    padding-top: 5px;
    margin-top: -5px;
}

.bento-item {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: relative;
}

.bento-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.bento-item.bento-image {
    grid-column: 4;
    grid-row: 1 / span 2;
    padding: 0;
}

.bento-item.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.bento-item.bento-featured {
    grid-column: 2 / span 2;
    background: #D2B48C;
    color: #17110A;
}

/* First item (Lived Perspective) goes to column 1 */
.bento-grid>.bento-item:first-child {
    grid-column: 1;
    grid-row: 1;
}

/* Fourth item (Inspiring Change) goes to column 1, row 2 */
.bento-grid>.bento-item:nth-child(4) {
    grid-column: 1;
    grid-row: 2;
}

.bento-item.bento-featured h3 {
    color: #17110A;
}

.bento-item.bento-featured p {
    color: rgba(23, 17, 10, 0.85);
}

.bento-item.bento-featured .bento-icon {
    background: rgba(255, 255, 255, 0.4);
    color: #17110A;
}

.bento-item.bento-featured .bento-icon svg {
    color: #17110A;
}

.bento-item.bento-accent {
    background: #EDE4D3;
}

.bento-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.bento-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #EDE4D3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bento-icon svg {
    width: 24px;
    height: 24px;
    color: #995A3B;
}

.bento-item h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    line-height: 1.3;
}

.bento-item p {
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.55;
    margin: 0;
    text-align: center;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 100px 24px;
    background: #FCF1DD;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

.about-content h2 {
    font-family: var(--font-heading) !important;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900 !important;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.05;
}

.about-content h2 em {
    font-style: italic;
    color: #1a1a1a;
}

.about-subtitle {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #995A3B;
    margin-bottom: 30px;
    display: block;
}

.about-text {
    font-size: 18px;
    line-height: 1.85;
    color: #333;
    margin-bottom: 40px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    color: #1a1a1a;
    font-weight: 700;
}

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 600px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 120px 24px;
    background: #FCF1DD;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-badge {
    display: inline-block;
    padding: 10px 24px;
    background: #D2B48C;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    cursor: default;
}

.services-badge:hover {
    background: #F5F0E8;
    color: #17110A;
}

.services-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    color: #0a0a0a;
    margin: 0 0 16px;
    line-height: 1.1;
}

.services-subtitle {
    font-size: 18px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: stretch;
    padding-top: 10px;
    margin-top: -10px;
}

/* Service Card - Modern Design */
.service-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
}

.service-card-image {
    position: relative;
    overflow: hidden;
    height: 240px;
    flex-shrink: 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Zoom out the Inclusive Beauty card image */
.service-card:nth-child(4) .service-card-image img {
    object-fit: contain;
    object-position: center top;
    background: #faf7f8;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: #0a0a0a;
    backdrop-filter: blur(10px);
}

.service-card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 8px;
    line-height: 1.3;
    min-height: 58px;
}

.service-tagline {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 16px;
    min-height: 20px;
}

.service-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 24px;
    min-height: 76px;
}

/* Service Features - Minimal List */
.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    min-height: 80px;
}

.service-features li {
    position: relative;
    padding: 8px 12px 8px 28px;
    background: #FCF1DD;
    border: 1px solid #D2B48C;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.25;
    color: #17110A;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 56px;
    overflow: hidden;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #D2B48C;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}

.service-features li:hover {
    background: #995A3B;
    color: #fff;
    border-color: #995A3B;
}

.service-features li:hover::before {
    color: #fff;
}

/* Service Footer */
.service-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.service-ideal {
    font-size: 13px;
    color: #888;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0a0a0a;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}



.service-card-bottom .btn-secondary:hover {
    background: var(--color-bg-light);
    color: var(--color-text);
    border-color: var(--color-border);
}

.service-ideal {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.6;
    background: #EDE4D3;
    padding: 16px 20px;
    border-radius: 8px;
    border-left: 4px solid #D2B48C;
}

/* ============================================
   IMPACT SECTION
   ============================================ */
.impact-section {
    padding: 100px 24px;
    background: #D2B48C;
}

.impact-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.impact-header {
    text-align: center;
    margin-bottom: 60px;
}

.impact-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: #FCF1DD;
    margin: 0 0 16px;
    line-height: 1.1;
}

.impact-header p {
    font-size: 18px;
    color: #FCF1DD;
    margin: 0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 10px;
    margin-top: -10px;
}

.impact-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
}

.impact-number {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 700;
    color: #995A3B;
    line-height: 1;
    margin-bottom: 16px;
}

.impact-card h4 {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 700;
    color: #0a0a0a;
    margin: 0 0 12px;
}

.impact-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.consulting-cta {
    background: #FCF8F3;
    padding: 80px 0 100px;
    position: relative;
}

.consulting-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.consulting-cta-card {
    background: #D2B48C;
    border-radius: 20px;
    padding: 56px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(210, 180, 140, 0.2);
}

.consulting-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.1;
}

.consulting-cta-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: #fff;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.consulting-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.consulting-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    background-color: #fff;
    color: #1a1a1a;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.consulting-cta-btn:hover {
    background-color: #faf9f4;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 100px 0 80px;
    background: #D2B48C;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 900;
    color: #FCF1DD;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.testimonials-header h2 em {
    font-style: italic;
}

.testimonials-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.testimonials-scroll {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    padding-top: 6px;
    margin-top: -6px;
    padding-bottom: 6px;
    margin-bottom: -6px;
}

.testimonials-scroll::-webkit-scrollbar {
    display: none;
}

.testimonials-scroll:active,
.testimonials-scroll.active {
    cursor: grabbing;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 22px);
    min-width: calc(33.333% - 22px);
    background: #FFFFFF;
    border-radius: 8px;
    padding: 48px 32px 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    scroll-snap-align: start;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.75;
    color: #2d2d2d;
    margin-bottom: 32px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-text em {
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: #D2B48C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.testimonial-avatar::before {
    content: '"';
    position: absolute;
    font-size: 32px;
    font-family: Georgia, serif;
    color: #fff;
    font-weight: bold;
    line-height: 1;
}

.testimonial-avatar img {
    display: none;
}

.testimonial-info h6 {
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
    line-height: 1.3;
}

.testimonial-info span {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 400;
    color: #666;
    line-height: 1.4;
}

.testimonials-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 48px;
}

.testimonials-pagination .pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #17110A;
    border: none;
    cursor: pointer;
    padding: 0;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.testimonials-pagination .pagination-dot:not(.active) {
    opacity: 0.25;
}

.testimonials-pagination .pagination-dot:hover {
    transform: scale(1.2);
    opacity: 0.5;
}

.testimonials-pagination .pagination-dot.active {
    opacity: 1;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.site-footer {
    background: #000;
    color: #fff;
    padding: 80px 0 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

.footer-brand h6 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-brand h6 a {
    color: #fff;
}

.footer-brand p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact span {
    font-family: var(--font-body);
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 100px 0;
    background: #FCF1DD;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.1;
}

.faq-header h2 em {
    font-style: italic;
}

.faq-header p {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 6px;
    margin-top: -6px;
}

.faq-card {
    background: #FCF8F3;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid #D2B48C;
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.faq-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.faq-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #FCF1DD;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(210, 180, 140, 0.3);
}

.faq-card-icon svg {
    width: 24px;
    height: 24px;
    color: #D2B48C;
}

.faq-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    line-height: 1.35;
    padding-top: 4px;
}

.faq-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
    .services-grid {
        gap: 32px;
    }

    .service-image img {
        height: 280px;
    }

    .service-title {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    :root {
        --spacing-section: 80px;
    }

    .hero-container {
        padding: 0 40px;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .consulting-intro-container {
        gap: 24px;
        padding: 0 20px;
    }

    .consulting-intro-section {
        padding: 80px 20px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        order: -1;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .service-buttons {
        flex-direction: column;
    }

    .service-buttons .btn-primary,
    .service-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .testimonials-scroll {
        gap: 24px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-section: 60px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-card {
        padding: 24px;
    }

    .faq-container {
        padding: 0 24px;
    }

    .consulting-cta {
        padding: 60px 0 80px;
    }

    .consulting-cta-container {
        padding: 0 24px;
    }

    .consulting-cta-card {
        padding: 40px 32px;
    }

    .consulting-cta-title {
        font-size: clamp(32px, 5vw, 44px);
    }

    .consulting-cta-text {
        font-size: 16px;
    }

    .intro-section {
        padding: 60px 20px;
    }

    .intro-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .intro-heading h2 {
        font-size: clamp(28px, 6vw, 36px);
    }

    .why-section {
        padding: 60px 20px;
        min-height: auto;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 16px;
    }

    .bento-item.bento-image {
        grid-column: span 1;
        grid-row: span 1;
        height: 250px;
    }

    .bento-item.bento-featured {
        grid-column: span 1;
    }

    /* Mobile hero - match home page pattern */
    .hero-section {
        min-height: 100vh;
        min-height: 100svh;
        padding: 0;
        background-color: #000 !important;
        display: flex;
        align-items: flex-end;
    }

    .hero-image-wrapper {
        display: none !important;
    }

    .hero-image-mobile {
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    .hero-image-mobile::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
            to top,
            rgba(23, 17, 10, 0.85) 0%,
            rgba(23, 17, 10, 0.6) 35%,
            rgba(23, 17, 10, 0.15) 60%,
            transparent 100%
        );
    }

    .hero-image-mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 38% top;
        display: block;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 24px 144px;
        justify-content: flex-end;
        text-align: center;
        max-width: 100%;
        min-height: 100vh;
        min-height: 100svh;
        z-index: 2;
    }

    .hero-content {
        padding: 0;
        transform: none !important;
        max-width: 100%;
        z-index: 2;
        text-align: center;
        margin-right: 0;
        margin-left: 0;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 20px;
        line-height: 1.15;
        color: #fff;
    }

    .hero-eyebrow {
        font-size: 11px;
        margin-top: 0;
        margin-bottom: 14px;
        letter-spacing: 0.12em;
        color: #D2B48C;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        flex: 1;
        text-align: center;
        padding: 11px 13px;
        font-size: 14px;
    }

    .hero-buttons .btn-secondary {
        color: #fff;
        border-color: rgba(255, 255, 255, 0.5);
        background: transparent;
    }

    .scroll-indicator {
        bottom: 80px;
        color: rgba(255, 255, 255, 0.7);
    }

    .stats-section {
        padding: 16px 0;
    }

    .stats-section .container {
        padding: 0 24px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px 4px;
        max-width: 100%;
        justify-content: initial;
    }

    .stat-item {
        flex: none;
        border-right: none;
        border-bottom: none;
        padding: 12px 4px;
        min-width: auto;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-number .suffix {
        font-weight: 900;
        font-family: var(--font-body);
    }

    .stat-label {
        font-size: 0.55rem;
        letter-spacing: 0.08em;
    }

    .logos-section {
        padding: 32px 0;
    }

    .logos-section .container {
        padding: 0 24px;
    }

    .logos-track {
        gap: 24px;
        padding: 0 16px;
    }

    .logo-slide {
        width: 100px;
        height: 55px;
    }

    .logo-slide img {
        max-width: 100px;
        max-height: 55px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-section {
        padding: 80px 16px;
    }

    .impact-section {
        padding: 80px 16px;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .impact-card {
        padding: 32px 24px;
    }

    .impact-header {
        margin-bottom: 40px;
    }

    .services-header {
        margin-bottom: 48px;
    }

    .service-card-image {
        height: 200px;
    }

    .service-card-content {
        padding: 24px;
    }

    .service-features {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 1fr;
    }

    .service-features li {
        min-height: 56px;
        height: 100%;
        line-height: 1.35;
        position: relative;
        padding: 8px 12px 8px 28px;
    }

    .service-features li::before {
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        line-height: 1;
    }

    .service-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .service-link {
        align-self: flex-end;
    }

    .testimonials-scroll {
        gap: 20px;
        touch-action: pan-x;
        overscroll-behavior-x: contain;
    }

    .testimonials-wrapper {
        padding: 0 24px;
    }

    .testimonials-section {
        overflow: hidden;
    }

    .testimonials-header h2 {
        font-size: clamp(28px, 7vw, 40px);
    }

    .testimonial-card {
        flex: 0 0 calc(100% - 20px);
        min-width: calc(100% - 20px);
        min-height: 480px;
        padding: 36px 24px 28px;
    }

    .testimonials-pagination .pagination-dot {
        width: 14px;
        height: 14px;
        padding: 8px;
        box-sizing: content-box;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 12px 12px;
    }

    .hero-container {
        padding: 0 20px calc(120px + env(safe-area-inset-bottom));
    }

    .hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .hero-title {
        font-size: clamp(24px, 7vw, 34px);
        margin-bottom: 16px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 10px 11px;
        font-size: 13px;
    }

    .consulting-intro-container,
    .about-container,
    .services-container,
    .cta-container,
    .testimonials-wrapper {
        padding: 0 16px;
    }

    .consulting-intro-section {
        padding: 48px 16px;
    }

    .testimonials-header {
        margin-bottom: 32px;
    }

    .testimonials-header h2 {
        font-size: clamp(24px, 7vw, 32px);
    }

    .testimonial-card {
        padding: 36px 24px 32px;
        min-height: 420px;
    }

    .testimonial-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .testimonial-avatar {
        width: 42px;
        height: 42px;
    }

    .testimonial-avatar::before {
        font-size: 24px;
    }

    .testimonial-info h6 {
        font-size: 14px;
    }

    .testimonial-info span {
        font-size: 12px;
    }

    .testimonials-section {
        padding: 60px 0 56px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 4px 2px;
    }

    .stat-item {
        border-right: none;
        min-width: auto;
        padding: 8px 2px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.5rem;
        letter-spacing: 0.05em;
    }

    .logos-section {
        padding: 16px 0;
    }

    .logos-track {
        gap: 24px;
        padding: 0 16px;
    }

    .logo-slide {
        width: 90px;
        height: 45px;
    }

    .logo-slide img {
        max-width: 90px;
        max-height: 45px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-features li {
        min-height: 54px;
        padding: 8px 10px 8px 24px;
    }

    .service-features li::before {
        left: 8px;
        font-size: 0.9rem;
    }

    .services-section {
        padding: 48px 16px;
    }

    .impact-section {
        padding: 48px 16px;
    }

    .footer-container {
        padding: 0 16px;
    }

    .site-footer {
        padding: 40px 0 24px;
    }
}

@media (max-width: 360px) {
    .stats-grid {
        gap: 2px 0;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.45rem;
        letter-spacing: 0.03em;
    }

    .testimonials-wrapper {
        padding: 0 12px;
    }
}

/* ============================================
   CTA SECTION - About Page Style
   ============================================ */
.cta-section {
    padding: 40px 0 100px 0;
    background-color: #F8F5F0;
    background-image: none !important;
    position: relative;
}

.cta-section::before,
.cta-section::after {
    display: none !important;
    content: none !important;
}

.cta-section .cta-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 64px 56px;
    text-align: center;
    background: linear-gradient(135deg, #995A3B 0%, #BD9450 100%);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(153, 90, 59, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 16px;
}

.cta-section .cta-container h2 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(44px, 5vw, 64px);
    line-height: 1.1;
    color: #fff;
    margin: 0 0 12px 0;
}

.cta-section .cta-container p {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 12px 0;
}

.cta-section .cta-contact-row {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.cta-section .cta-contact-row .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    background-color: #fff !important;
    color: #1a1a1a !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    min-width: 180px;
}

.cta-section .cta-contact-row .btn-primary:hover {
    background-color: #2d4a3e !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-section .cta-buttons {
    display: flex !important;
    gap: 20px;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap;
    margin-top: -10px;
    width: 100% !important;
    position: relative;
    text-align: center !important;
}

.cta-section .cta-buttons .btn-primary,
.cta-section .cta-buttons .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-body) !important;
    font-weight: 500 !important;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    background-color: #fff !important;
    color: #1a1a1a !important;
    border: none !important;
    outline: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    width: 250px !important;
    flex: none !important;
}

.cta-section .cta-buttons .btn-primary:hover,
.cta-section .cta-buttons .btn-secondary:hover {
    background-color: #E8D5B7 !important;
    color: #1a1a1a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 40px 16px;
    }

    .cta-section .cta-container {
        padding: 36px 24px 40px;
        margin: 0 auto;
        text-align: center;
        overflow: hidden;
        gap: 0 !important;
    }

    .cta-section .cta-container h2 {
        font-size: clamp(28px, 7vw, 36px);
        text-align: center;
        margin-bottom: 12px !important;
    }

    .cta-section .cta-container p {
        font-size: 15px;
        text-align: center;
        margin-bottom: 20px !important;
    }

    .cta-section .cta-contact-row {
        margin: 0 0 12px 0 !important;
        width: 100%;
    }

    .cta-section .cta-contact-row .btn-primary {
        width: 100% !important;
        min-width: unset;
        margin: 0 !important;
    }

    .cta-section .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px !important;
        margin: 0 !important;
        width: 100%;
    }

    .cta-section .cta-buttons .btn-primary,
    .cta-section .cta-buttons .btn-secondary {
        width: 100% !important;
        flex: unset;
        box-sizing: border-box;
        text-align: center;
        justify-content: center;
        margin: 0 !important;
    }
}

/* Desktop parity lock: force consulting cards to static-source sizing */
@media (min-width: 1025px) {
    .services-section {
        padding: 120px 24px !important;
    }

    .services-container {
        max-width: 1300px !important;
        margin: 0 auto !important;
    }

    .services-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px !important;
        align-items: stretch !important;
        padding: 0 !important;
        padding-top: 10px !important;
        margin-top: -10px !important;
    }

    .service-card {
        background: #FFFFFF !important;
        border-radius: 20px !important;
        border: 1px solid rgba(0, 0, 0, 0.06) !important;
        box-shadow: none !important;
        overflow: hidden !important;
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        padding: 0 !important;
    }

    .service-card:hover {
        transform: translateY(-8px) !important;
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12) !important;
    }

    .service-card::before {
        display: none !important;
    }

    .service-card-image {
        height: 240px !important;
        margin-bottom: 0 !important;
        flex-shrink: 0 !important;
    }

    .service-card-content {
        padding: 32px !important;
        display: flex !important;
        flex-direction: column !important;
        flex: 1 !important;
    }

    .service-title {
        font-size: 22px !important;
        line-height: 1.3 !important;
        min-height: 58px !important;
        margin: 0 0 8px !important;
    }

    .service-tagline {
        font-size: 13px !important;
        margin: 0 0 16px !important;
        min-height: 20px !important;
    }

    .service-description {
        font-size: 15px !important;
        line-height: 1.7 !important;
        min-height: 76px !important;
        margin: 0 0 24px !important;
    }

    .service-features {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        margin: 0 0 24px !important;
        min-height: 80px !important;
    }

    .service-features li {
        position: relative !important;
        padding: 8px 12px 8px 28px !important;
        font-size: 13px !important;
        line-height: 1.25 !important;
        border-radius: 8px !important;
        min-height: 56px !important;
        height: 56px !important;
        overflow: hidden !important;
    }

    .service-features li::before {
        content: "✓" !important;
        position: absolute !important;
        left: 10px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        color: #D2B48C !important;
        font-weight: 700 !important;
        font-size: 14px !important;
        line-height: 1 !important;
    }

    .service-features li:hover::before {
        color: #fff !important;
    }

    .service-footer {
        margin-top: auto !important;
        padding-top: 20px !important;
        border-top: 1px solid #eee !important;
        gap: 16px !important;
    }

    .service-ideal {
        font-size: 14px !important;
        line-height: 1.6 !important;
        padding: 16px 20px !important;
    }

    .service-link {
        font-size: 14px !important;
        gap: 8px !important;
    }
}

