        /* CyberSecure Risk Management - Phase 1 Enhanced Design */

        :root {
            --color-gold: #A58F49;
            --color-gold-light: #C4A962;
            --color-dark-teal: #1A2A32;
            --color-teal-light: #2D4A5A;
            --color-beige: #EAE4D5;
            --color-white: #FFFFFF;
            --color-gray: #666666;
            --gradient-gold: linear-gradient(135deg, #A58F49 0%, #C4A962 100%);
            --gradient-teal: linear-gradient(135deg, #1A2A32 0%, #2D4A5A 100%);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
            --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
        }

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

        html { scroll-behavior: smooth; }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--color-dark-teal);
            background: var(--color-beige);
        }

        img { max-width: 100%; height: auto; display: block; }
        a { text-decoration: none; color: inherit; }

        /* Header */
        header {
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.2rem 3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo img { height: 140px; }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            font-weight: 500;
            position: relative;
            transition: 0.3s;
            white-space: nowrap;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-gold);
            transition: 0.3s;
        }

        nav a:hover::after { width: 100%; }
        nav a:hover { color: var(--color-gold); }

        /* Active page indicator */
        nav a.active {
            color: var(--color-gold);
        }

        /* Keep button text visible when active */
        nav a.btn.active {
            color: white;
        }

        nav a.active::after {
            width: 100%;
        }

        .btn {
            background: var(--gradient-gold);
            color: white;
            padding: 0.7rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0 4px 15px rgba(165,143,73,0.3);
            display: inline-block;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(165,143,73,0.4);
        }

        /* ENHANCED Hero Section - Taller & More Dramatic */
        .hero {
            position: relative;
            height: 650px;
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
            z-index: -1;
        }

        /* Diagonal accent stripe - DISABLED per user request */
        .hero-overlay::before {
            content: '';
            display: none;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            color: white;
            z-index: 1;
            animation: fadeInUp 1s ease;
            text-align: center;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5), 0 4px 20px rgba(0,0,0,0.4), 0 8px 40px rgba(0,0,0,0.3);
            background: rgba(26, 42, 50, 0.3);
            backdrop-filter: blur(0px);
            padding: 1.5rem 2.5rem;
            border-radius: 10px;
            display: inline-block;
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
        }

        .hero h1::after {
            content: '';
            display: block;
            width: 120px;
            height: 5px;
            background: var(--gradient-gold);
            margin: 1.2rem auto 0;
            border-radius: 3px;
        }

        .hero-subtitle-box {
            background: rgba(26, 42, 50, 0.3);
            backdrop-filter: blur(0px);
            padding: 1rem 2rem;
            border-radius: 10px;
            display: inline-block;
            box-shadow: 0 8px 30px rgba(0,0,0,0.3);
            margin-bottom: 2.5rem;
        }

        .hero-subtitle-box p {
            margin: 0;
            font-size: 1.4rem;
            line-height: 1.5;
            text-shadow: 0 2px 8px rgba(0,0,0,0.4);
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--color-gold);
            color: white;
            box-shadow: 0 4px 15px rgba(165,143,73,0.3);
        }

        .btn-outline:hover {
            background: var(--gradient-gold);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(165,143,73,0.4);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        /* PHASE 2 - STATISTICS SECTION */
        .stats-section {
            background: linear-gradient(135deg, var(--color-dark-teal) 0%, var(--color-teal-light) 100%);
            color: white;
            position: relative;
            overflow: hidden;
            padding: 4.5rem 0;
        }

        .stats-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .stats-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(165,143,73,0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .stats-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(165,143,73,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
            position: relative;
            padding: 2rem 1rem;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--color-gold);
            line-height: 1;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.95;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 1rem;
            box-shadow: 0 4px 15px rgba(165,143,73,0.4);
        }

        /* PHASE 2 - ENHANCED PHILOSOPHY with Visual Elements */
        .philosophy-diagram {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .philosophy-feature {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            transition: 0.3s;
        }

        .philosophy-feature:hover {
            transform: translateX(10px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        }

        .philosophy-feature-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-gold);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
            color: white;
        }

        .philosophy-feature-content h4 {
            font-size: 1.1rem;
            color: var(--color-dark-teal);
            margin-bottom: 0.3rem;
            font-weight: 600;
        }

        .philosophy-feature-content p {
            font-size: 0.95rem;
            color: var(--color-gray);
            line-height: 1.5;
            margin: 0;
        }

        /* PHASE 2 - FLOATING ACCENT SHAPES */
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.05;
            z-index: 0;
            pointer-events: none;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--color-gold);
            top: 10%;
            right: -5%;
        }

        .shape-2 {
            width: 200px;
            height: 200px;
            background: var(--color-teal-light);
            bottom: 20%;
            left: -3%;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            background: var(--color-gold);
            top: 60%;
            right: 10%;
        }

        /* PHASE 2 - OVERLAPPING CARD EFFECTS */
        .services-section {
            background: white;
            position: relative;
        }

        .services-section .floating-shape {
            opacity: 0.03;
        }

        .service-card {
            background: linear-gradient(135deg, #FFFFFF 0%, #F9F9F9 100%);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: 0.4s;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(165,143,73,0.1) 0%, transparent 50%);
            opacity: 0;
            transition: 0.5s;
            pointer-events: none;
        }

        .service-card:hover::after {
            opacity: 1;
        }

        /* PHASE 2 - MISSION CARDS DEPTH */
        .mission-card {
            background: white;
            border-radius: 25px;
            padding: 2.5rem;
            box-shadow: var(--shadow-lg);
            position: relative;
            transform: translateY(0);
            transition: 0.4s;
            overflow: hidden;
        }

        .mission-card::after {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(165,143,73,0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        section {
            padding: 4.5rem 0;
        }

        /* REDESIGNED Philosophy Section - Split Layout */
        .philosophy-section {
            background: white;
            position: relative;
            overflow: hidden;
        }

        .philosophy-grid {
            display: grid;
            grid-template-columns: 45% 55%;
            gap: 4rem;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        .philosophy-visual {
            position: relative;
        }

        .philosophy-shape {
            width: 100%;
            height: 420px;
            background: var(--gradient-teal);
            border-radius: 30px;
            position: relative;
            overflow: visible;
            box-shadow: var(--shadow-lg);
            background-image: url('../images/philosopher2.jpg');
            background-size: cover;
            background-position: center;
            margin-bottom: 4rem;
        }

        .philosophy-video-container {
            width: 100%;
            position: relative;
            padding-top: 56.25%; /* 16:9 aspect ratio */
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            margin-bottom: 4rem;
            background: #000;
        }

        .philosophy-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 30px;
        }

        .philosophy-motto {
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: white;
            z-index: 10;
            background: rgba(26, 42, 50, 0.4);
            padding: 1rem 2rem;
            border-radius: 10px;
            backdrop-filter: blur(5px);
        }

        .philosophy-motto h3 {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
            color: white;
        }

        .philosophy-motto p {
            font-size: 1.05rem;
            margin: 0;
            color: white;
            opacity: 0.95;
            line-height: 1.4;
        }

        .philosophy-diagram-image {
            width: 100%;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            margin-top: 1rem;
        }

        .philosophy-shape::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(26,42,50,0.3) 0%, rgba(45,74,90,0.2) 100%);
        }

        .philosophy-icons {
            display: none;
        }

        .philosophy-content h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            position: relative;
            color: var(--color-dark-teal);
        }

        .philosophy-content h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--gradient-gold);
            margin-top: 0.8rem;
        }

        .philosophy-content .subtitle {
            font-size: 1.1rem;
            color: var(--color-gray);
            margin-bottom: 2rem;
        }

        .philosophy-content h3 {
            font-size: 1.8rem;
            color: var(--color-gold);
            margin: 1.5rem 0 0.8rem;
        }

        .philosophy-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--color-gray);
            margin-bottom: 1.2rem;
        }

        .philosophy-highlight {
            background: linear-gradient(135deg, #F5F5F5 0%, #EAE4D5 100%);
            padding: 1.5rem;
            border-radius: 15px;
            border-left: 4px solid var(--color-gold);
            margin-top: 1.5rem;
        }

        /* ENHANCED Mission & Vision */
        .mission-vision {
            background: var(--color-beige);
            position: relative;
        }

        .mission-vision::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, #F5F5F5 0%, #EAE4D5 100%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--color-dark-teal);
            text-align: center;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--gradient-gold);
            margin-top: 0.8rem;
            margin-left: auto;
            margin-right: auto;
        }

        .section-subtitle {
            font-size: 1.15rem;
            color: var(--color-gray);
            max-width: 800px;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

        .mission-vision-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            position: relative;
            z-index: 1;
        }

        .mission-card {
            background: white;
            border-radius: 25px;
            padding: 2.5rem;
            box-shadow: var(--shadow-lg);
            position: relative;
            transform: translateY(0);
            transition: 0.4s;
        }

        .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.25);
        }

        .mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 8px;
            height: 100%;
            background: var(--gradient-gold);
            border-radius: 25px 0 0 25px;
        }

        .mission-card h3 {
            color: var(--color-gold);
            font-size: 1.9rem;
            margin-bottom: 1.2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .mission-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-gold);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            flex-shrink: 0;
        }

        .mission-card p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--color-gray);
        }

        /* ASYMMETRIC Services Grid */
        .services-section {
            background: white;
        }

        .services-asymmetric {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin-top: 2.5rem;
        }

        .service-card {
            background: linear-gradient(135deg, #FFFFFF 0%, #F9F9F9 100%);
            border-radius: 25px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: 0.4s;
            display: flex;
            flex-direction: column;
        }

        .service-card:first-child {
            grid-row: span 2;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .service-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

        .service-card:first-child .service-image {
            height: 320px;
        }

        .service-content {
            padding: 2rem;
            flex-grow: 1;
        }

        .service-icon {
            width: 65px;
            height: 65px;
            background: var(--gradient-gold);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.2rem;
            box-shadow: 0 4px 15px rgba(165,143,73,0.3);
        }

        .service-content h3 {
            font-size: 1.6rem;
            margin-bottom: 0.8rem;
            color: var(--color-dark-teal);
        }

        .service-content p {
            color: var(--color-gray);
            line-height: 1.7;
            font-size: 1rem;
        }

        /* VISUAL JOURNEY Timeline - 4-Step Framework */
        .framework-section {
            background: linear-gradient(135deg, var(--color-dark-teal) 0%, var(--color-teal-light) 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .framework-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(165,143,73,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .framework-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 3rem;
            position: relative;
            z-index: 1;
        }

        .framework-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .framework-header h2 {
            font-size: 2.5rem;
            margin-bottom: 0.8rem;
        }

        .framework-header p {
            font-size: 1.15rem;
            opacity: 0.9;
        }

        .journey-timeline {
            position: relative;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
            margin-top: 3rem;
        }

        /* Connecting line */
        .journey-timeline::before {
            content: '';
            position: absolute;
            top: 45px;
            left: 12%;
            right: 12%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-gold), transparent);
            z-index: 0;
        }

        .journey-step {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .step-number {
            width: 90px;
            height: 90px;
            background: white;
            border: 4px solid var(--color-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--color-dark-teal);
            box-shadow: 0 8px 25px rgba(0,0,0,0.3);
            transition: 0.3s;
            position: relative;
        }

        .journey-step:hover .step-number {
            transform: scale(1.1);
            background: var(--gradient-gold);
            color: white;
            border-color: white;
        }

        .step-content h3 {
            font-size: 1.6rem;
            margin-bottom: 0.8rem;
            font-weight: 700;
            text-align: center;
        }

        .step-content p {
            opacity: 0.9;
            line-height: 1.6;
            font-size: 0.98rem;
            text-align: left;
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-gold);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
            opacity: 0.3;
        }

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

        .cta-content h2 {
            font-size: 3rem;
            margin-bottom: 0.8rem;
            text-align: center;
        }

        .cta-content .tagline {
            font-size: 1.4rem;
            font-style: italic;
            margin-bottom: 1.5rem;
            opacity: 0.95;
            text-align: center;
        }

        .cta-content p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .cta-button-wrapper {
            text-align: center;
        }

        .btn-white {
            background: white;
            color: var(--color-dark-teal);
            font-size: 1.1rem;
            padding: 1rem 2.5rem;
        }

        /* Footer */
        footer {
            background: var(--color-dark-teal);
            color: white;
            padding: 3.5rem 0 1.5rem;
            border-top: 4px solid var(--color-gold);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
            max-width: 1400px;
            margin: 0 auto 2.5rem;
            padding: 0 3rem;
        }

        .footer-section h3 {
            color: var(--color-gold);
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255,255,255,0.8);
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: var(--color-gold);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.6);
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem 3rem 0;
        }

        .footer-tagline {
            margin-top: 0.5rem;
            font-style: italic;
            color: var(--color-gold);
        }

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--color-dark-teal);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .philosophy-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .philosophy-visual {
                order: 2;
            }

            .philosophy-content {
                order: 1;
            }

            .services-asymmetric {
                grid-template-columns: 1fr;
            }

            .service-card:first-child {
                grid-row: auto;
            }

            .journey-timeline {
                grid-template-columns: repeat(2, 1fr);
                gap: 3rem 2rem;
            }

            .journey-timeline::before {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 1rem 2rem;
            }

            nav {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 300px;
                height: calc(100vh - 80px);
                background: white;
                box-shadow: -5px 0 20px rgba(0,0,0,0.1);
                transition: 0.3s;
                padding: 2rem;
            }

            nav.mobile-menu-open {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .hero {
                height: 550px;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero-subtitle-box p {
                font-size: 1.2rem;
            }

            .logo img {
                height: 80px;
            }

            .mission-vision-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .journey-timeline {
                grid-template-columns: 1fr;
            }

            .container,
            .framework-container,
            .philosophy-grid,
            .mission-vision-grid,
            .footer-content,
            .footer-bottom {
                padding: 0 2rem;
            }

            section {
                padding: 3.5rem 0;
            }
        }

        @media (max-width: 640px) {
            .hero {
                height: 500px;
            }

            .hero h1 {
                font-size: 2.2rem;
                padding: 1rem 1.5rem;
            }

            .hero-subtitle-box p {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .philosophy-content h2,
            .framework-header h2,
            .cta-content h2 {
                font-size: 2rem;
            }
        }