   * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, sans-serif;
            line-height: 1.6;
            color: #1e293b;
            background: #f8fafc;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ============================================
           PAGE HEADER
           ============================================ */
        .page-header {
            position: relative;
            background: url('../images/teacher.webp') center/cover no-repeat;
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            margin-bottom: 40px;
        }

        .page-header::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
        }

        .page-header .container {
            position: relative;
            z-index: 2;
        }

        .page-header h1 {
            font-size: 58px;
            font-weight: 700;
            color: #fff;
        }

        .page-header p {
            font-size: 20px;
            opacity: 0.95;
            margin-top: 8px;
        }

        /* ============================================
           ABOUT GRID
           ============================================ */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .about-text h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #1e293b;
        }

        .about-text h2 span {
            color: #f97316;
        }

        .about-text p {
            color: #475569;
            margin-bottom: 14px;
            font-size: 15px;
            line-height: 1.8;
        }

        .about-text .highlight {
            color: #f97316;
            font-weight: 600;
        }

        .about-image {
            height: 80%;
            width: 100%;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            border-radius: 0;
            object-fit: cover;
            border: 4px solid rgba(255, 255, 255, 0.3);
            margin-bottom: 16px;
        }

        /* ============================================
           FOUNDER SECTION
           ============================================ */
        .founder-section {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 40px;
            margin-bottom: 50px;
            background: none;
            padding: 30px;
        }

        .founder-image {
            text-align: center;
        }

        .founder-image img {
            width: 300px;
            height: 550px;
            object-fit: cover;
        }

        .founder-image h4 {
            margin-top: 12px;
            font-size: 18px;
        }

        .founder-image p {
            font-size: 13px;
            color: #f97316;
            font-weight: 500;
        }

        .founder-story h3 {
            font-size: 24px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 12px;
        }

        .founder-story h3 span {
            color: #f97316;
        }

        .founder-story p {
            color: #475569;
            margin-bottom: 12px;
            line-height: 1.8;
            font-size: 15px;
        }

        .founder-story .signature {
            font-family: 'Georgia', serif;
            font-size: 20px;
            color: #f97316;
            margin-top: 16px;
            font-style: italic;
        }

        /* ============================================
           QUOTE BOX
           ============================================ */
        .quote-box {
            background: #fef3e8;
            padding: 30px 40px;
            border-left: 4px solid #f97316;
            margin-bottom: 50px;
        }

        .quote-box i {
            font-size: 24px;
            color: #f97316;
            opacity: 0.5;
            margin-bottom: 8px;
            display: block;
        }

        .quote-box blockquote {
            font-size: 18px;
            font-style: italic;
            color: #1e293b;
            margin-bottom: 6px;
        }

        .quote-box cite {
            color: #f97316;
            font-weight: 600;
            font-style: normal;
        }

        /* ============================================
           VALUES & STATS
           ============================================ */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 50px;
        }

        .value-item {
            background: #fff;
            border: 1px solid #e0e0e0;
            padding: 25px 20px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .value-item:hover {
            transform: translateY(-5px);
        }

        .value-item i {
            font-size: 32px;
            color: #f97316;
            margin-bottom: 10px;
        }

        .value-item h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .value-item p {
            font-size: 13px;
            color: #64748b;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 50px;
        }

        .stat-item {
            background: #fff;
            border: 1px solid #e0e0e0;
            padding: 25px 20px;
            text-align: center;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: #f97316;
        }

        .stat-label {
            font-size: 14px;
            color: #64748b;
            margin-top: 4px;
        }

        /* ============================================
           OGENE BITES SECTION
           ============================================ */
        .ogenebites-section {
            color: #fff;
            padding: 50px 40px;
            margin-bottom: 50px;
            text-align: center;
        }

        .ogenebites-section img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid rgba(255, 255, 255, 0.3);
            margin-bottom: 16px;
        }

        .ogenebites-section h2 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .ogenebites-section p {
            font-size: 16px;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto 16px;
            line-height: 1.8;
        }

        .ogenebites-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .ogenebites-features .feature {
            background: rgba(255, 255, 255, 0.15);
            padding: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .ogenebites-features .feature i {
            font-size: 28px;
            margin-bottom: 8px;
        }

        .ogenebites-features .feature h4 {
            font-size: 16px;
            font-weight: 600;
        }

        .ogenebites-features .feature p {
            font-size: 13px;
            opacity: 0.9;
            margin-top: 4px;
        }

        /* ============================================
           DOWN FOOTER - ENHANCED SECTION
           ============================================ */
        .down-footer {
            position: relative;
            background: url('../images/logp (1).webp') center/cover no-repeat fixed;
            height: auto;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 80px 20px;
            margin-top: 40px;
        }

        .down-footer::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.75);
        }

        .down-footer .container-footer {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }

        .down-footer h1 {
            font-size: 48px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }

        .down-footer h1 span {
            color: #f97316;
        }

        .down-footer .subtitle {
            font-size: 20px;
            opacity: 0.9;
            max-width: 700px;
            margin: 0 auto 10px;
            line-height: 1.6;
        }

        .down-footer .description {
            font-size: 16px;
            opacity: 0.8;
            max-width: 650px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }

        /* Stats Row in Down Footer */
        .footer-stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
            margin: 30px 0;
        }

        .footer-stats .stat {
            text-align: center;
        }

        .footer-stats .stat i {
            font-size: 32px;
            color: #f97316;
            display: block;
            margin-bottom: 8px;
        }

        .footer-stats .stat .number {
            font-size: 28px;
            font-weight: 700;
            display: block;
            color: #fff;
        }

        .footer-stats .stat .label {
            font-size: 13px;
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* CTA Buttons */
        .footer-cta {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            margin: 25px 0 30px;
        }

        .footer-cta .btn {
            display: inline-block;
            padding: 14px 36px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .footer-cta .btn-primary {
            background: #f97316;
            color: #fff;
            border: 2px solid #f97316;
        }

        .footer-cta .btn-primary:hover {
            background: #e56a0f;
            border-color: #e56a0f;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
        }

        .footer-cta .btn-secondary {
            background: transparent;
            color: #fff;
            border: 2px solid #fff;
        }

        .footer-cta .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }

        /* Footer Bottom Text */
        .footer-bottom-text {
            margin-top: 30px;
            font-size: 14px;
            opacity: 0.6;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 25px;
        }

        .footer-bottom-text i {
            color: #f97316;
        }

        .footer-bottom-text .heart {
            color: #ff6b6b;
        }

        /* Divider */
        .footer-divider {
            width: 60px;
            height: 3px;
            background: #f97316;
            margin: 15px auto;
            border-radius: 2px;
        }

        /* ============================================
           RESPONSIVE
           ============================================ */
        @media (max-width: 992px) {
            .about-grid {
                grid-template-columns: 1fr;
            }

            .founder-section {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .ogenebites-features {
                grid-template-columns: repeat(2, 1fr);
            }

            .down-footer h1 {
                font-size: 38px;
            }

            .footer-stats {
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .page-header h1 {
                font-size: 30px;
            }

            .page-header p {
                font-size: 16px;
            }

            .about-image {
                min-height: 100%;
            }

            .founder-image img {
                width: 100%;
                height: 100%;
            }

            .quote-box blockquote {
                font-size: 16px;
            }

            .ogenebites-section h2 {
                font-size: 24px;
            }

            .down-footer h1 {
                font-size: 30px;
            }

            .down-footer .subtitle {
                font-size: 17px;
            }

            .down-footer {
                padding: 60px 20px;
                min-height: 50vh;
            }

            .footer-stats {
                gap: 20px;
            }

            .footer-stats .stat .number {
                font-size: 22px;
            }

            .footer-cta .btn {
                padding: 12px 28px;
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 45px;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .ogenebites-features {
                grid-template-columns: 1fr;
            }

            .about-image {
                padding: 30px 20px;
            }

            .quote-box {
                padding: 20px;
            }

            .ogenebites-section {
                padding: 30px 20px;
            }

            .down-footer h1 {
                font-size: 26px;
            }

            .down-footer .subtitle {
                font-size: 15px;
            }

            .down-footer .description {
                font-size: 14px;
            }

            .footer-stats {
                flex-direction: column;
                gap: 15px;
            }

            .footer-stats .stat {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 12px;
            }

            .footer-stats .stat i {
                font-size: 24px;
                margin-bottom: 0;
            }

            .footer-stats .stat .number {
                font-size: 20px;
                display: inline;
            }

            .footer-stats .stat .label {
                font-size: 12px;
                display: inline;
            }

            .footer-cta {
                flex-direction: column;
                align-items: center;
            }

            .footer-cta .btn {
                width: 100%;
                max-width: 280px;
                text-align: center;
            }
        }