/* ===================================
   CSS RESET & BASE STYLES
   =================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

strong {
    font-weight: 600;
}

/* ===================================
   ACCENT LINE
   =================================== */

.accent-line {
    width: 3px;
    height: 60px;
    background: linear-gradient(to bottom, #d4a574, #c9956c);
    margin-bottom: 20px;
}

.accent-line.light {
    background: linear-gradient(to bottom, #f5e6d3, #d4a574);
}

/* ===================================
   SECTION HEADER
   =================================== */

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .accent-line {
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #000;
    margin-bottom: 0;
}

/* ===================================
   NAVIGATION BAR
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu li a {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: #2b2b2b;
    transition: color 0.3s ease;
    padding: 10px 0;
    text-transform: uppercase;
}

.nav-menu li a:hover {
    color: #888;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    background: none;
    border: none;
    padding: 10px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================================
   HERO SECTION - Glass Panel Effect
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 70px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 15% 60%;
}

/* Glass Panels Overlay */
.hero-panels {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    z-index: 1;
    pointer-events: none;
}

.hero-panels .panel {
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
}

.hero-panels .panel:last-child {
    border-right: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 6px;
    color: #2b2b2b;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.3;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
}

/* ===================================
   PRESSURE/SYSTEMS SECTION
   =================================== */

.pressure-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 100px 0;
}

.pressure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pressure-text {
    display: flex;
    gap: 30px;
}

.pressure-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    line-height: 1.3;
}

.pressure-subheadings {
    margin-bottom: 30px;
}

.pressure-subheadings p {
    font-size: 1.3rem;
    font-weight: 300;
    color: #ccc;
    margin-bottom: 5px;
}

.pressure-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #aaa;
}

.pressure-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
}

/* ===================================
   FOCUS STATEMENT BAR
   =================================== */

.focus-statement {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.focus-statement p {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.focus-statement strong {
    color: #d4a574;
    font-weight: 600;
}

/* ===================================
   WHO I WORK WITH SECTION
   =================================== */

.who-work-with {
    background-color: #fff;
    padding: 100px 0;
}

.who-work-with .section-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    padding-left: 0;
    text-align: center;
}

.who-work-with .container {
    padding: 0 60px;
}

.work-with-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.work-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    transition: none;
    position: relative;
    padding-left: 30px;
}

.work-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 60px;
    background: #000;
}

.work-card:hover {
    transform: none;
    box-shadow: none;
}

.work-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.work-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
}

/* Outline Button */
.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 12px 20px;
    border: 1px solid #000;
    color: #000;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    min-width: 140px;
}

.outline-btn:hover {
    background-color: #000;
    color: #fff;
}

.outline-btn .arrow {
    transition: transform 0.3s ease;
}

.outline-btn:hover .arrow {
    transform: translateX(3px);
}

.outline-btn.dark {
    border-color: #fff;
    color: #fff;
}

.outline-btn.dark:hover {
    background-color: #fff;
    color: #333;
}

/* ===================================
   WHAT I HELP NAVIGATE SECTION
   =================================== */

.what-help-section {
    background-color: #fff;
    padding: 100px 0;
}

.what-help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.help-list {
    margin-top: 20px;
}

.help-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.help-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #d4a574;
    border-radius: 50%;
}

.help-list li strong {
    color: #222;
}

.what-help-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
}

/* ===================================
   MY APPROACH SECTION
   =================================== */

.approach-section {
    background-color: #f8f6f3;
    padding: 100px 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.approach-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 5px;
}

.approach-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.approach-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #222;
}

.approach-list {
    margin-bottom: 30px;
}

.approach-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #444;
}

.approach-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #d4a574;
    border-radius: 50%;
}

.approach-list li strong {
    color: #222;
}

.approach-closing {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

/* ===================================
   WHY THIS WORK MATTERS SECTION
   =================================== */

.why-matters-section {
    background-color: #fff;
    padding: 100px 0;
}

.why-matters-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-matters-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.why-matters-content strong {
    color: #222;
}

.why-matters-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

/* ===================================
   THE DIFFERENCE SECTION - Animated 3D Cubes
   =================================== */

.difference-section {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #b8a5c7 0%, #c4b3d4 25%, #d4c5e0 50%, #e8d5e8 75%, #f0d8e0 100%);
}

/* 3D Cubes Container */
.cubes-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    perspective: 1000px;
    overflow: hidden;
}

.cubes-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

/* Individual Cubes */
.cube {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #e8d0d8 0%, #d8c0d0 50%, #c8b0c0 100%);
    border-radius: 8px;
    box-shadow:
        10px 10px 30px rgba(0, 0, 0, 0.15),
        -5px -5px 20px rgba(255, 255, 255, 0.5);
    animation: floatCube 8s ease-in-out infinite;
}

/* Cube positions and animations */
.cube-1 {
    top: 5%;
    right: 5%;
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.cube-2 {
    top: 15%;
    right: 15%;
    width: 70px;
    height: 70px;
    animation-delay: 0.5s;
}

.cube-3 {
    top: 8%;
    right: 25%;
    width: 90px;
    height: 90px;
    animation-delay: 1s;
}

.cube-4 {
    top: 25%;
    right: 8%;
    width: 60px;
    height: 60px;
    animation-delay: 1.5s;
}

.cube-5 {
    top: 35%;
    right: 20%;
    width: 85px;
    height: 85px;
    animation-delay: 2s;
}

.cube-6 {
    top: 20%;
    right: 35%;
    width: 75px;
    height: 75px;
    animation-delay: 0.3s;
}

.cube-7 {
    top: 45%;
    right: 5%;
    width: 95px;
    height: 95px;
    animation-delay: 0.8s;
}

.cube-8 {
    top: 50%;
    right: 25%;
    width: 65px;
    height: 65px;
    animation-delay: 1.3s;
}

.cube-9 {
    top: 40%;
    right: 40%;
    width: 80px;
    height: 80px;
    animation-delay: 1.8s;
}

.cube-10 {
    top: 60%;
    right: 15%;
    width: 70px;
    height: 70px;
    animation-delay: 2.3s;
}

.cube-11 {
    top: 55%;
    right: 35%;
    width: 55px;
    height: 55px;
    animation-delay: 0.2s;
}

.cube-12 {
    top: 70%;
    right: 8%;
    width: 85px;
    height: 85px;
    animation-delay: 0.7s;
}

.cube-13 {
    top: 65%;
    right: 28%;
    width: 75px;
    height: 75px;
    animation-delay: 1.2s;
}

.cube-14 {
    top: 75%;
    right: 18%;
    width: 60px;
    height: 60px;
    animation-delay: 1.7s;
}

.cube-15 {
    top: 80%;
    right: 5%;
    width: 90px;
    height: 90px;
    animation-delay: 2.2s;
}

.cube-16 {
    top: 85%;
    right: 30%;
    width: 70px;
    height: 70px;
    animation-delay: 0.4s;
}

.cube-17 {
    top: 30%;
    right: 45%;
    width: 50px;
    height: 50px;
    animation-delay: 0.9s;
}

.cube-18 {
    top: 10%;
    right: 45%;
    width: 65px;
    height: 65px;
    animation-delay: 1.4s;
}

.cube-19 {
    top: 90%;
    right: 40%;
    width: 80px;
    height: 80px;
    animation-delay: 1.9s;
}

.cube-20 {
    top: 78%;
    right: 45%;
    width: 55px;
    height: 55px;
    animation-delay: 2.4s;
}

@keyframes floatCube {

    0%,
    100% {
        transform: translateZ(0px) translateY(0px) rotateX(0deg) rotateY(0deg);
    }

    25% {
        transform: translateZ(30px) translateY(-10px) rotateX(5deg) rotateY(5deg);
    }

    50% {
        transform: translateZ(50px) translateY(-5px) rotateX(10deg) rotateY(10deg);
    }

    75% {
        transform: translateZ(30px) translateY(-15px) rotateX(5deg) rotateY(5deg);
    }
}

/* Difference Card */
.difference-card {
    position: relative;
    z-index: 10;
    background-color: rgba(20, 20, 25, 0.95);
    color: #fff;
    padding: 50px 45px;
    max-width: 420px;
    margin-left: 80px;
}

.difference-card h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.difference-card h3 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #bbb;
    margin-bottom: 25px;
}

.difference-intro {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.difference-intro strong {
    font-weight: 600;
}

.difference-statement {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #999;
    margin-bottom: 25px;
}

.difference-statement strong {
    color: #fff;
    font-weight: 600;
}

.difference-list {
    margin-bottom: 25px;
}

.difference-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #bbb;
}

.difference-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background-color: #d4a574;
    border-radius: 50%;
}

/* ===================================
   WORK IN NUMBERS & TRUSTED BY - Combined Section
   =================================== */

.numbers-clients-section {
    background-color: #fff;
}

/* Top Row: Chair Image | Work in Numbers */
.top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.chair-image {
    min-height: 450px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.chair-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.numbers-content {
    padding: 60px 50px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.numbers-content h2 {
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: #222;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.stat-box {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 400;
    color: #222;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.stat-line {
    width: 40px;
    height: 2px;
    background-color: #222;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* Bottom Row: Who I Work With | Logos */
.bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.clients-content {
    padding: 50px 45px;
    background-color: #000000;
    color: #fff;
}

.clients-content h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.clients-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.clients-subtitle {
    font-size: 0.85rem;
    color: #aaa;
    margin-bottom: 20px;
}

.clients-list {
    margin-bottom: 25px;
}

.clients-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #ccc;
}

.clients-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    background-color: #888;
    border-radius: 50%;
}

.clients-note {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* Logos Section - Staggered Layout */
.logos-wrapper {
    flex: 0.6;
    background-color: #e8e8e8;
    position: relative;
    min-height: 600px;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-card {
    position: absolute;
    /* background: #ffffff; */
    /* padding: 20px 25px; */
    /* border-radius: 3px; */
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
}

.logo-card img {
    max-height: 35px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.logo-card.logo-featured {
    padding: 25px 35px;
}

.logo-card.logo-featured img {
    max-height: 40px;
    max-width: 140px;
}

/* Staggered positioning - matching last.png */
.logo-pos-1 { top: 40px; left: 50px; }
.logo-pos-2 { top: 40px; left: 230px; }
.logo-pos-3 { top: 40px; right: 60px; }

.logo-pos-4 { top: 120px; left: 50px; }
.logo-pos-5 { top: 120px; left: 220px; }
.logo-pos-6 { top: 120px; right: 60px; }

.logo-pos-7 { top: 200px; left: 80px; }
.logo-pos-8 { top: 200px; right: 90px; }

.logo-pos-9 { top: 280px; left: 50%; transform: translateX(-50%); }

.logo-pos-10 { top: 370px; left: 60px; }
.logo-pos-11 { top: 370px; right: 80px; }

.logo-pos-12 { top: 450px; left: 60px; }
.logo-pos-13 { top: 450px; right: 80px; }

.logo-pos-14 { bottom: 40px; left: 60px; }
.logo-pos-15 { bottom: 40px; right: 80px; }

/* ===================================
   TESTIMONIALS CAROUSEL
   =================================== */

.testimonials-section {
    background-color: #000000;
    color: #fff;
    padding: 100px 0;
}

.testimonials-section h2 {
    color: #fff;
}

.testimonials-carousel {
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    margin: 0 10px;
}

.testimonial-badge {
    display: inline-block;
    padding: 5px 15px;
    background-color: #d4a574;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-radius: 3px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-readmore {
    color: #d4a574;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.testimonial-readmore:hover {
    color: #e8c4a0;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.author-role {
    font-size: 0.85rem;
    color: #888;
}

.linkedin-icon {
    color: #0077b5;
    transition: color 0.3s ease;
}

.linkedin-icon:hover {
    color: #00a0dc;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #444;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #d4a574;
    transform: scale(1.2);
}

.dot:hover {
    background-color: #666;
}

/* ===================================
   CONTACT / CTA SECTION
   =================================== */

.contact-section {
    background-color: #f8f6f3;
    padding: 100px 0 60px;
    text-align: center;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-logo {
    margin-bottom: 30px;
}

.contact-logo img {
    height: 80px;
    width: auto;
    margin: 0 auto;
}

.contact-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #222;
}

.contact-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #333;
    color: #fff;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
}

.contact-item a {
    color: #555;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #d4a574;
}

.contact-item svg {
    color: #d4a574;
}

.copyright {
    padding-top: 40px;
    border-top: 1px solid #ddd;
}

.copyright p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 6px;
    }

    .pressure-grid,
    .what-help-grid,
    .approach-grid,
    .why-matters-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .work-with-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .top-row,
    .bottom-row {
        grid-template-columns: 1fr;
    }

    .chair-image {
        min-height: 300px;
    }

    .logo-row.row-2,
    .logo-row.row-3,
    .logo-row.row-4,
    .logo-row.row-1 {
        justify-content: center;
        padding-right: 0;
    }

    .difference-card {
        margin: 0 auto;
        max-width: 90%;
    }

    .cube {
        display: none;
    }

    .cube-1,
    .cube-3,
    .cube-5,
    .cube-7,
    .cube-10,
    .cube-12 {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 78px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu li a {
        display: block;
        padding: 20px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 80vh;
        padding-top: 80px;
    }

    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 4px;
        line-height: 1.5;
    }

    .hero-content {
        padding: 0 30px;
    }

    .hero-panels .panel {
        border-right-color: rgba(255, 255, 255, 0.1);
    }

    h2 {
        font-size: 1.8rem;
    }

    .work-with-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .work-card {
        padding-left: 20px;
    }

    .work-card::before {
        height: 50px;
        width: 2px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .difference-card {
        padding: 35px 30px;
        margin: 20px;
    }

    .difference-section {
        min-height: auto;
        padding: 60px 0;
    }

    .cubes-container {
        opacity: 0.5;
    }

    .pressure-text {
        flex-direction: column;
        gap: 20px;
    }

    .pressure-text .accent-line {
        height: 3px;
        width: 60px;
    }

    .pressure-image img,
    .what-help-image img,
    .approach-image img,
    .why-matters-image img {
        height: 300px;
    }

    .clients-content {
        padding: 40px 30px;
    }

    .numbers-content {
        padding: 40px 30px;
    }

    .logos-wrapper {
        min-height: 500px;
        padding: 40px 20px;
    }

    .logo-card {
        padding: 15px 20px;
    }

    .logo-card img {
        max-height: 30px;
        max-width: 100px;
    }

    .who-work-with {
        padding: 60px 0;
    }

    .who-work-with .section-header,
    .who-work-with .container {
        padding-left: 24px;
        padding-right: 24px;
    }

    .container {
        padding: 0 24px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    /* Adjust positions for tablet */
    .logo-pos-1 { top: 30px; left: 30px; }
    .logo-pos-2 { top: 30px; left: 180px; }
    .logo-pos-3 { top: 30px; right: 40px; }

    .logo-pos-4 { top: 110px; left: 30px; }
    .logo-pos-5 { top: 110px; left: 170px; }
    .logo-pos-6 { top: 110px; right: 40px; }

    .logo-pos-7 { top: 190px; left: 50px; }
    .logo-pos-8 { top: 190px; right: 60px; }

    .logo-pos-9 { top: 260px; left: 50%; }

    .logo-pos-10 { top: 340px; left: 40px; }
    .logo-pos-11 { top: 340px; right: 50px; }

    .logo-pos-12 { top: 410px; left: 40px; }
    .logo-pos-13 { top: 410px; right: 50px; }

    .logo-pos-14 { bottom: 30px; left: 40px; }
    .logo-pos-15 { bottom: 30px; right: 50px; }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding-top: 70px;
    }

    .hero-title {
        font-size: 1.3rem;
        letter-spacing: 2px;
        line-height: 1.6;
    }

    .hero-content {
        padding: 0 20px;
    }

    .nav-logo img {
        height: 42px;
    }

    h2 {
        font-size: 1.4rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .work-with-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .work-card {
        padding-left: 15px;
    }

    .work-card h3 {
        font-size: 1.2rem;
    }

    .work-card p {
        font-size: 0.95rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .stat-box {
        text-align: center;
    }

    .stat-line {
        margin-left: auto;
        margin-right: auto;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .difference-card {
        padding: 25px 20px;
        margin: 15px;
    }

    .difference-card h2 {
        font-size: 1.5rem;
    }

    .difference-card h3 {
        font-size: 1rem;
    }

    .difference-card p {
        font-size: 0.9rem;
    }

    .difference-list li {
        font-size: 0.85rem;
    }

    .who-work-with {
        padding: 50px 0;
    }

    .who-work-with .section-header,
    .who-work-with .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .container {
        padding: 0 16px;
    }

    /* Fix bottom-row to stack vertically on mobile */
    .bottom-row {
        flex-direction: column !important;
    }

    .clients-content {
        flex: 1 !important;
        width: 100% !important;
    }

    .logos-wrapper {
        position: relative;
        min-height: auto !important;
        padding: 40px 20px !important;
        width: 100%;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .logo-card {
        padding: 15px !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        height: 80px;
    }

    .logo-card img {
        max-height: 35px !important;
        max-width: 100px !important;
    }

    /* Footer title wrapping */
    .footer-title {
        white-space: normal !important;
        font-size: 1.3rem !important;
        line-height: 1.4 !important;
    }

    .logos-wrapper {
        position: relative;
        min-height: 800px;
        padding: 30px 15px;
    }

    .logo-card {
        padding: 12px 18px;
        position: absolute;
    }

    .logo-card img {
        max-height: 25px;
        max-width: 80px;
    }

    /* Stack logos more vertically on mobile */
    .logo-pos-1 { top: 20px; left: 15px; }
    .logo-pos-2 { top: 20px; right: 15px; }
    .logo-pos-3 { top: 100px; left: 15px; }

    .logo-pos-4 { top: 100px; right: 15px; }
    .logo-pos-5 { top: 180px; left: 15px; }
    .logo-pos-6 { top: 180px; right: 15px; }

    .logo-pos-7 { top: 260px; left: 15px; }
    .logo-pos-8 { top: 260px; right: 15px; }

    .logo-pos-9 { top: 340px; left: 50%; transform: translateX(-50%); }

    .logo-pos-10 { top: 420px; left: 15px; }
    .logo-pos-11 { top: 420px; right: 15px; }

    .logo-pos-12 { top: 500px; left: 15px; }
    .logo-pos-13 { top: 500px; right: 15px; }

    .logo-pos-14 { top: 580px; left: 15px; }
    .logo-pos-15 { top: 580px; right: 15px; }

    /* Numbers section mobile */
    .numbers-content {
        padding: 30px 20px;
        text-align: center;
    }

    .numbers-content h2 {
        font-size: 1.4rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    /* Clients content mobile */
    .clients-content {
        padding: 30px 20px;
    }

    .clients-content h2 {
        font-size: 1.3rem;
    }

    .clients-content h3 {
        font-size: 0.95rem;
    }

    .clients-subtitle {
        font-size: 0.8rem;
    }

    .clients-list li {
        font-size: 0.8rem;
    }

    .clients-note {
        font-size: 0.75rem;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-0 {
    margin-top: 0;
}

/* Smooth transitions for all interactive elements */
a,
button {
    transition: all 0.3s ease;
}

/* Focus states for accessibility */
a:focus,
button:focus {
    outline: 2px solid #d4a574;
    outline-offset: 2px;
}

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===================================
   NEW PAGES STYLES
   =================================== */

/* --- Generic Hero Variants --- */
.hero.small {
    min-height: 60vh;
}

.hero-bg.dark-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

/* --- Services Grid (Individuals/Institutions) --- */
.services-section {
    background-color: #fff;
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: #f8f6f3;
    padding: 40px 30px;
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    margin-top: 20px;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    flex-grow: 1;
    margin-bottom: 25px;
    color: #555;
}

/* --- Challenges Section (Dark) --- */
.challenges-section {
    background-color: #1a1a1a;
    color: #fff;
    padding: 100px 0;
}

.challenges-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.challenges-list {
    list-style: none;
}

.challenges-list li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    font-size: 1.1rem;
    color: #ccc;
}

.challenges-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: #d4a574;
    border-radius: 50%;
}

.challenges-list li strong {
    color: #fff;
    font-weight: 600;
}

/* --- Organisational Services (2x2 Grid) --- */
.org-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.org-service-card {
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 5px;
    border: 1px solid #333;
}

.org-service-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.org-service-card p {
    color: #aaa;
    margin-bottom: 25px;
}

/* --- Insights Page --- */
.featured-article {
    background-color: #fff;
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.featured-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    padding: 5px 15px;
    color: #666;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    color: #d4a574;
    border-bottom-color: #d4a574;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.article-card {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.article-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 25px;
}

.article-category {
    font-size: 0.8rem;
    color: #d4a574;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

.article-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-excerpt {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
}

.article-date {
    font-size: 0.8rem;
    color: #999;
}

/* --- Connect Page Form --- */
.contact-form-section {
    background-color: #fff;
    padding: 80px 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #d4a574;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background-color: #d4a574;
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #c9956c;
}

/* --- Newsletter --- */
.newsletter-section {
    background-color: #f8f6f3;
    padding: 80px 0;
    text-align: center;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 30px auto 0;
}

.newsletter-input {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* --- Responsive Adjustments for New Pages --- */
@media (max-width: 1024px) {

    .services-grid,
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .services-grid,
    .articles-grid,
    .org-services-grid,
    .challenges-grid,
    .featured-grid,
    .newsletter-form {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .newsletter-input {
        width: 100%;
    }

    .featured-grid {
        gap: 20px;
    }
}
/* PRECISION FIXES - USER REQUESTED */
.testimonials-section { background-color: #000000 !important; }
.clients-content { background-color: #000000 !important; }
.difference-card { background-color: #000000 !important; }
/* End of Precision Fixes */

/* WIX STYLE BUTTONS */
.wix-style-btn { display: inline-flex; align-items: center; justify-content: space-between; padding: 10px 20px; border: 1px solid #000; color: #000; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; min-width: 160px; text-decoration: none; transition: all 0.3s ease; }
.wix-style-btn:hover { background-color: #000; color: #fff; }
.wix-style-btn .arrow-box { border-left: 1px solid #000; padding-left: 15px; margin-left: 15px; display: flex; align-items: center; height: 100%; transition: border-color 0.3s ease; }
.wix-style-btn:hover .arrow-box { border-left-color: #fff; }

/* PRECISION OVERRIDES - FIXED */
.navbar {
    background-color: rgba(255, 255, 255, 0.85) !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
}
.hero-bg img {
    object-position: 15% 60% !important;
    filter: none;
}
.hero-bg::after {
    display: none;
}

/* LOGO GRID PRECISION FIX */
.logos-wrapper { display: grid; grid-template-columns: repeat(6, 1fr); gap: 30px; align-items: center; padding: 60px; background-color: #f4f4f4; align-content: center; }
.logo-card { position: relative; top: auto; left: auto; right: auto; bottom: auto; transform: none; box-shadow: 0 4px 15px rgba(0,0,0,0.08); background: #fff; border-radius: 4px; padding: 20px; display: flex; justify-content: center; align-items: center; height: 100px; transition: transform 0.3s ease; }
.logo-card:hover { transform: translateY(-5px); }
.logo-card img { max-width: 80%; max-height: 50px; width: auto; height: auto; object-fit: contain; }
/* Spanning Classes */
.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }
.span-centered { grid-column: 3 / 5; }
@media (max-width: 900px) { .logos-wrapper { grid-template-columns: repeat(2, 1fr); } .span-2, .span-3, .span-centered { grid-column: span 1; } .span-centered { grid-column: span 2; } }
@media (max-width: 600px) { 
    .logos-wrapper { 
        padding: 30px 20px; 
        gap: 20px; 
        grid-template-columns: repeat(2, 1fr);
    }
    .logo-card {
        height: 80px;
        padding: 15px;
    }
    .logo-card img {
        max-height: 35px;
    }
    .span-2, .span-3 {
        grid-column: span 1;
    }
    .span-centered {
        grid-column: span 2;
    }
}

/* HERO SECTION PRECISION FIX - WIX MATCH */
.hero-title { font-weight: 400 !important; letter-spacing: 3.6px !important; color: #000000 !important; line-height: 56.25px !important; font-family: 'Montserrat', sans-serif !important; text-transform: uppercase !important; margin-bottom: 10px !important; }
.hero-title em { font-style: normal !important; font-weight: 400 !important; }
.hero-bg img { object-position: 50% 50% !important; object-fit: cover !important; width: 100% !important; height: 100% !important; }
.hero { overflow: hidden !important; }
/* Bottom Gradient Overlay */
.hero-bg::after { content: '' !important; position: absolute !important; bottom: 0 !important; left: 0 !important; right: 0 !important; height: 200px !important; background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%) !important; z-index: 1 !important; pointer-events: none !important; }
/* Vertical Lines - 5 Blue/Muted Lines */
.hero-panels .panel { border-right: 1px solid rgba(100, 120, 150, 0.3) !important; background: transparent !important; }

/* HERO OVERLAY AND TEXT POSITIONING */
.hero-content { position: absolute !important; top: 20% !important; left: 50% !important; transform: translateX(-50%) !important; z-index: 3 !important; }
.hero-overlay { position: absolute !important; bottom: 0 !important; left: 0 !important; width: 100% !important; height: 50% !important; z-index: 2 !important; overflow: hidden !important; }
.hero-overlay img { width: 100% !important; height: 100% !important; object-fit: cover !important; object-position: 0% 50% !important; opacity: 0.9 !important; }

/* HERO BOTTOM SHADOW GRADIENT - PROPER FIX */
.hero::after { content: '' !important; position: absolute !important; bottom: 0 !important; left: 0 !important; right: 0 !important; height: 250px !important; background: linear-gradient(to bottom, #00000073 0%, rgb(0 0 0 / 79%) 60%, rgb(0 0 0) 100%) !important; z-index: 2 !important; pointer-events: none !important; }

/* ===================================
   INDIVIDUALS PAGE STYLES
   =================================== */

.ind-hero {
    position: relative;
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 76px; /* navbar height */
}

.ind-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.ind-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ind-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.ind-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    color: #fff;
}

.ind-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-transform: none; /* Individuals page title is mixed case in screenshot? No, 'Support for...' is mixed. */
}

.section-padding {
    padding: 100px 0;
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.my-interest-section .highlight-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #000;
}

.interest-body p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
}

.image-content img {
    border-radius: 20px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bg-light {
    background-color: #f9f9f9;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.feature-card {
    background: transparent;
}

.gold-text {
    color: rgb(225, 95, 9);
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
}

.bg-dark {
    background-color: #000;
    color: #fff;
}

.white {
    color: #fff !important;
}

.section-title.white {
    color: #fff;
}

.gap-large {
    gap: 100px;
}

.clarity-content {
    margin-top: 50px;
}

.list-block h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.list-block ul li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: #eee;
    text-align: left;
}

.list-block ul li::before {
    content: '�';
    color: rgb(225, 95, 9);
    position: absolute;
    left: 0;
}

.cta-section {
    background-color: #fff;
    text-align: center;
}

.footer-simple {
    background-color: #f5f5f5;
    padding: 60px 0 30px;
    font-size: 0.9rem;
    color: #666;
}

.footer-content.centered {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .two-col-grid, .feature-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ind-hero-content h1 {
        font-size: 2rem;
    }
    
    .gap-large {
        gap: 40px;
    }
}


/* ===================================
   ORGANISATIONS PAGE STYLES
   =================================== */

.org-hero {
    position: relative;
    height: 70vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 76px;
}

.org-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.org-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.org-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4); /* Slightly darker overlay */
    z-index: 1;
}

.org-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
    color: #fff;
}

.org-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.bg-darker {
    background-color: #111;
    color: #fff;
}

.engagement-item {
    margin-bottom: 40px;
}

.engagement-item:last-child {
    margin-bottom: 0;
}

.pressure-list {
    margin-top: 20px;
}

.pressure-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 0; /* Removing padding as we are not using standard bullets here, maybe? */
    list-style: none; /* Removing default bullet */
    border-left: 3px solid rgb(225, 95, 9);
    padding-left: 20px;
}

.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.content-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
}

.content-card h4 {
    color: rgb(225, 95, 9);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.impact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.impact-item {
    background: rgba(255,255,255,0.1);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Responsive Organisations */
@media (max-width: 1024px) {
    .cards-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cards-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .org-hero-content h1 {
        font-size: 2rem;
    }
}


/* Individuals Page Specific Styles */
.ind-hero {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ind-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.ind-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.ind-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.ind-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.ind-hero-content h1 {
    font-size: 3rem;
    font-weight: 300;
    color: #fff;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* Utilities */
.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: #f9f9f9;
}

.bg-dark {
    background-color: #1a1a1a;
}

.text-white {
    color: #fff;
}

.white {
    color: #fff !important;
}

.centered {
    text-align: center;
}

.centered-text {
    text-align: center;
}

.gold-text {
    color: #d4a574;
}

/* Grid Layouts */
.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.two-col-grid.gap-large {
    gap: 80px;
}

/* My Interest Section */
.my-interest-section .highlight-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.my-interest-section .image-content img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-grid.two-col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: #fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card.plain {
    box-shadow: none;
    background: transparent;
    border: 1px solid #eee;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Clarity Section */
.list-block ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.list-block ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.list-block ul li:last-child {
    border-bottom: none;
}

.list-block h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #d4a574;
}

/* Footer Simple */
.footer-simple {
    background-color: #111;
    color: #888;
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer-simple p {
    margin-bottom: 10px;
}

.footer-simple .social-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .ind-hero-content h1 {
        font-size: 2rem;
    }
    
    .two-col-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid.two-col {
        grid-template-columns: 1fr;
    }
}


/* Organisations Page Styles */

/* Org Hero */
.org-hero {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.org-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.org-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.6; /* Darken standard image */
}

.org-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.org-hero-content h1 {
    font-size: 3.5rem;
    color: #fff;
    font-weight: 300;
    line-height: 1.2;
}

/* Intro Text */
.intro-statement {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Areas of Engagement */
.engagement-list {
    padding-right: 40px;
}

.engagement-item {
    margin-bottom: 30px;
    border-left: 2px solid #d4a574;
    padding-left: 20px;
}

.engagement-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.engagement-item p {
    color: #ccc;
    font-size: 0.95rem;
}

.image-content.full-height img {
    height: 100%;
    object-fit: cover;
    max-height: 600px; /* Consist height max */
}

/* Pressures Grid */
.pressures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pressure-card {
    background: #fff;
    padding: 30px;
    border-top: 3px solid #eee;
    transition: border-color 0.3s;
}

.pressure-card:hover {
    border-color: #d4a574;
}

.pressure-number {
    font-size: 3rem;
    color: #eee;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.pressure-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.principle-card {
    background: #fff;
    color: #333;
    padding: 50px;
    border-radius: 4px;
}

.principle-title {
    color: #d4a574;
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.standout-quote {
    font-size: 1.5rem;
    opacity: 0.8;
}

/* Enable List */
.enable-list {
    list-style: none;
    padding: 0;
}

.enable-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
}

.enable-list li::before {
    content: '�';
    color: #d4a574;
    position: absolute;
    left: 0;
    top: 0;
}

/* Responsive Organisations */
@media (max-width: 1024px) {
    .org-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .org-hero-content h1 {
        font-size: 2rem;
    }
    
    .pressures-grid {
        grid-template-columns: 1fr;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
}


/* Institutions Page Styles */

/* Inst Hero */
.inst-hero {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.inst-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.inst-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.7;
}

.inst-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.inst-hero-content h1 {
    font-size: 3rem;
    color: #fff;
    font-weight: 300;
    line-height: 1.3;
}

.inst-hero-content strong {
    font-weight: 600;
}

/* Utilities */
.gold-line {
    width: 60px;
    height: 3px;
    background-color: #d4a574;
    margin: 15px 0 25px 0;
}

.grid-2-by-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.grid-item h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.grid-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Checkerboard Layout */
.checkerboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.checker-block {
    min-height: 500px; /* Ensure substantial height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.checker-content {
    max-width: 500px;
    padding: 60px;
}

.image-block {
    padding: 0; /* No padding for image blocks */
    position: relative;
    overflow: hidden;
}

.image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.bg-black {
    background-color: #000;
    color: #fff;
}

.support-item {
    margin-bottom: 30px;
}

.support-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.support-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: inherit; /* Inherit from parent (white or dark) */
}

.bg-black .support-item p {
    color: #ccc;
}

/* Engagement Principles */
.principles-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.principles-grid-4 .principle-card {
    text-align: center;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.principles-grid-4 .principle-title {
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Responsive Institutions */
@media (max-width: 900px) {
    .checkerboard-grid {
        grid-template-columns: 1fr; 
    }
    
    .checker-block {
        min-height: 400px; /* Smaller height on mobile */
        order: 0; /* Default order */
    }
    
    /* Reorder for mobile flow if needed, but sequential is usually fine */
    
    .grid-2-by-2 {
        grid-template-columns: 1fr;
    }
    
    .principles-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .principles-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .inst-hero-content h1 {
        font-size: 2rem;
    }
}


/* Insights Page Styles */

/* Insights Hero */
.insights-hero {
    background-color: #fff;
    padding: 120px 0 60px;
    text-align: center;
}

.insights-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: #000;
}

.insights-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.article-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.article-image {
    height: 200px;
    width: 100%;
    overflow: hidden;
    background-color: #eee;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.placeholder-bg {
    background-color: #ddd;
}

.placeholder-bg-dark {
    background-color: #333;
}

.article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-tag {
    font-size: 0.8rem;
    color: #d4a574;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.article-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #333;
}

.article-excerpt {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.read-more:hover {
    color: #d4a574;
}

/* Subscribe Section */
.subscribe-section {
    background-color: #fff;
    border-top: 1px solid #eee;
}

.subscribe-form {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.subscribe-form input {
    padding: 12px 20px;
    border: 1px solid #ccc; /* darker border for visibility against white */
    border-radius: 4px;
    width: 300px;
    font-family: inherit;
}

/* Responsive Insights */
@media (max-width: 900px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .insights-title {
        font-size: 2.2rem;
    }
    
    .subscribe-form {
        flex-direction: column;
        align-items: center;
    }
    
    .subscribe-form input {
        width: 100%;
        max-width: 300px;
    }
}

.below-banner-text .first-h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 0;
}

.below-banner-text .pressure-subheadings {
    margin-bottom: 20px;
}

.below-banner-text .pressure-subheadings p {
    font-size: 35px;
    font-weight: 400;
    color: white;
    margin-bottom: 5px;
}

.below-banner-text .accent-line {
    margin-bottom: 15px;
}

.below-banner-text .focus-statement-inline {
    margin-top: 40px !important;
}





/* ===================================
   MOBILE RESPONSIVE FIXES FOR ALL PAGES
   Applied: About, Individuals, Organisations, Institutions, Connect, Alliances
   =================================== */

/* About Page Mobile Fixes */
@media (max-width: 768px) {
    .wix-hero {
        height: 60vh;
        min-height: 400px;
    }

    .wix-hero-content {
        padding: 20px;
        margin-top: 40px;
    }

    .wix-hero-content h1 {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .wix-hero-content .subtitle {
        font-size: 1.1rem;
    }

    /* CRITICAL FIX: Make all sections consistent - text first, then image */
    .wix-story-section,
    .wix-leadership-section {
        flex-direction: column;
    }

    /* Force text to appear first, image second for ALL sections */
    .story-content-wrapper,
    .leadership-content-wrapper {
        order: 1;
    }

    .story-image-wrapper,
    .leadership-image-wrapper {
        order: 2;
    }

    .story-image-wrapper,
    .leadership-image-wrapper,
    .insight-image-wrapper {
        position: relative;
        height: 280px;
        flex: 1 1 auto;
    }

    .story-image-wrapper img,
    .leadership-image-wrapper img,
    .insight-image-wrapper img {
        height: 280px;
        object-fit: cover;
    }

    .story-content-wrapper,
    .leadership-content-wrapper,
    .insight-text-wrapper {
        flex: 1 1 auto;
        min-height: auto;
        padding: 40px 24px;
    }

    .story-content,
    .leadership-content,
    .insight-text-content {
        padding: 20px 0;
    }

    .story-content h2,
    .leadership-content h2,
    .insight-text-content h2 {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .story-content p,
    .leadership-content p,
    .insight-text-content p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    /* Insights section - force consistent order */
    .wix-insights-section .insight-row,
    .wix-insights-section .insight-row.reverse {
        flex-direction: column;
    }

    .insight-text-wrapper {
        order: 1;
    }

    .insight-image-wrapper {
        order: 2;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cert-item img {
        height: 200px;
    }

    .wix-footer {
        padding: 40px 0 30px;
    }

    .footer-container {
        padding: 0 24px;
        flex-direction: column;
        gap: 30px;
    }

    .footer-left,
    .footer-right {
        max-width: 100%;
    }

    .footer-title {
        font-size: 1.5rem;
        white-space: normal;
        line-height: 1.4;
    }

    .footer-nav {
        margin-top: 40px;
    }

    .footer-right {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .wix-hero {
        height: 50vh;
        min-height: 320px;
    }

    .wix-hero-content h1 {
        font-size: 1.3rem;
    }

    .wix-hero-content .subtitle {
        font-size: 0.95rem;
    }

    .story-image-wrapper,
    .leadership-image-wrapper,
    .insight-image-wrapper {
        height: 240px;
    }

    .story-image-wrapper img,
    .leadership-image-wrapper img,
    .insight-image-wrapper img {
        height: 240px;
    }

    .story-content-wrapper,
    .leadership-content-wrapper,
    .insight-text-wrapper {
        padding: 30px 16px;
    }

    .story-content,
    .leadership-content,
    .insight-text-content {
        padding: 10px 0;
    }

    .story-content h2,
    .leadership-content h2,
    .insight-text-content h2 {
        font-size: 1.2rem;
    }

    .footer-title {
        font-size: 1.3rem;
    }

    .wix-footer {
        padding: 30px 0 20px;
    }

    .footer-container {
        padding: 0 16px;
        gap: 24px;
    }

    .footer-nav {
        margin-top: 30px;
    }
}

/* Individuals Page Additional Mobile Fixes */
@media (max-width: 768px) {
    .ind-why-grid,
    .ind-how-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ind-section-heading {
        font-size: 1.8rem;
        text-align: center;
    }

    .ind-how-heading-col .ind-section-heading {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ind-section-heading {
        font-size: 1.4rem;
    }

    .ind-why-grid,
    .ind-how-grid {
        gap: 24px;
    }
}

/* Organisations Page Additional Mobile Fixes */
@media (max-width: 768px) {
    .org-challenges-inner,
    .org-engagement-inner,
    .org-pressures-inner {
        flex-direction: column;
    }

    .org-challenges-image,
    .org-engagement-image,
    .org-pressures-image {
        position: relative;
        height: 300px;
        flex: 1 1 auto;
    }

    .org-challenges-text,
    .org-engagement-text,
    .org-pressures-text {
        flex: 1 1 auto;
        min-height: auto;
        padding: 50px 24px;
    }

    .org-challenges-body,
    .org-engagement-body,
    .org-pressures-body {
        padding: 40px 0;
    }

    .org-heading {
        font-size: 1.2rem;
    }

    .org-how-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .org-enables-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .org-challenges-image,
    .org-engagement-image,
    .org-pressures-image {
        height: 250px;
    }

    .org-challenges-text,
    .org-engagement-text,
    .org-pressures-text {
        padding: 40px 16px;
    }

    .org-heading {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
}

/* Institutions Page Additional Mobile Fixes */
@media (max-width: 768px) {
    .inst-support-inner,
    .inst-engage-inner {
        flex-direction: column;
    }

    .inst-support-left,
    .inst-engage-right {
        flex: 1 1 auto;
        min-height: auto;
        padding: 50px 24px;
    }

    .inst-support-right,
    .inst-engage-left {
        position: relative;
        height: 300px;
        flex: 1 1 auto;
    }

    .inst-support-body,
    .inst-engage-body {
        padding: 40px 0;
    }

    .inst-section-heading {
        font-size: 1.7rem;
    }

    .inst-realities-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .inst-enables-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .inst-enables-divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .inst-support-right,
    .inst-engage-left {
        height: 250px;
    }

    .inst-support-left,
    .inst-engage-right {
        padding: 40px 16px;
    }

    .inst-section-heading {
        font-size: 1.4rem;
    }

    .inst-realities {
        padding: 50px 0;
    }

    .inst-enables {
        padding: 50px 0;
    }
}

/* Connect Page Additional Mobile Fixes */
@media (max-width: 768px) {
    .con-contact-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .con-left-content {
        padding: 50px 24px;
    }

    .con-contact-right {
        padding: 50px 24px;
    }

    .con-contact-heading {
        font-size: 1.7rem;
    }

    .con-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .con-form-row .con-form-group {
        margin-bottom: 24px;
    }

    .con-disclaimer {
        margin-top: 40px;
        padding-top: 24px;
    }
}

@media (max-width: 480px) {
    .con-left-content {
        padding: 40px 16px;
    }

    .con-contact-right {
        padding: 40px 16px;
    }

    .con-contact-heading {
        font-size: 1.4rem;
    }

    .con-send-btn {
        width: 100%;
        padding: 14px 20px;
    }

    .con-left-accent {
        width: 3px;
    }
}

/* Alliances Page Mobile Fixes */
@media (max-width: 768px) {
    .wix-hero {
        height: 60vh;
        min-height: 400px;
    }

    .wix-hero-content h1 {
        font-size: 1.4rem !important;
        line-height: 1.5em !important;
    }

    .pressure-grid,
    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pressure-image,
    .challenges-image {
        order: -1;
    }

    .pressure-image img,
    .challenges-image img {
        height: 300px;
        object-fit: cover;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card {
        padding: 30px 24px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
        padding: 0 16px !important;
    }

    .partner-logo {
        padding: 15px !important;
    }

    .partner-logo img {
        max-width: 120px !important;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .wix-hero {
        height: 50vh;
        min-height: 320px;
    }

    .wix-hero-content h1 {
        font-size: 1.1rem !important;
        line-height: 1.4em !important;
    }

    .pressure-image img,
    .challenges-image img {
        height: 250px;
    }

    .service-card {
        padding: 24px 20px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    .partners-grid {
        gap: 20px !important;
    }

    .partner-logo {
        padding: 12px !important;
    }

    .partner-logo img {
        max-width: 100px !important;
        max-height: 40px !important;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }
}

/* Insights Page Mobile Fixes */
@media (max-width: 768px) {
    .insights-hero {
        padding: 100px 0 50px;
    }

    .insights-title {
        font-size: 2.2rem;
    }

    .insights-subtitle {
        font-size: 1.05rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .article-image {
        height: 220px;
    }

    .article-content {
        padding: 20px;
    }

    .article-title {
        font-size: 1.2rem;
    }

    .subscribe-form {
        flex-direction: column;
        align-items: stretch;
    }

    .subscribe-form input {
        width: 100%;
    }

    .subscribe-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .insights-hero {
        padding: 80px 0 40px;
    }

    .insights-title {
        font-size: 1.8rem;
    }

    .insights-subtitle {
        font-size: 0.95rem;
    }

    .article-image {
        height: 180px;
    }

    .article-content {
        padding: 18px;
    }

    .article-title {
        font-size: 1.1rem;
    }

    .article-excerpt {
        font-size: 0.88rem;
    }
}

/* General Mobile Navigation Improvements */
@media (max-width: 768px) {
    .navbar {
        padding: 0 24px;
    }

    .nav-logo img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0 16px;
    }

    .nav-logo img {
        height: 40px;
    }
}
