

        /* Floating Elements */
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
            overflow: hidden;
        }

        .float-item {
            position: absolute;
            opacity: 0.05;
            font-size: 2rem;
            font-weight: 700;
            color: var(--blue-primary);
            animation: float 20s ease-in-out infinite;
        }

        .float-item:nth-child(1) {
            top: 15%;
            left: 5%;
            animation-delay: 0s;
        }

        .float-item:nth-child(2) {
            top: 25%;
            right: 8%;
            animation-delay: -3s;
            color: var(--green-primary);
        }

        .float-item:nth-child(3) {
            top: 45%;
            left: 12%;
            animation-delay: -6s;
        }

        .float-item:nth-child(4) {
            top: 65%;
            right: 6%;
            animation-delay: -9s;
            color: var(--green-primary);
        }

        .float-item:nth-child(5) {
            top: 85%;
            left: 10%;
            animation-delay: -12s;
        }

        .float-item:nth-child(6) {
            top: 35%;
            right: 15%;
            animation-delay: -15s;
            color: var(--green-primary);
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            25% {
                transform: translateY(-30px) rotate(5deg);
            }

            50% {
                transform: translateY(0) rotate(0deg);
            }

            75% {
                transform: translateY(30px) rotate(-5deg);
            }
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-hero);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--white);
            box-shadow: var(--shadow-medium);
        }

        .logo-text {
            font-family: 'Syne', sans-serif;
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--navy);
        }

        .logo-text span {
            color: var(--blue-primary);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--gray-600);
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-hero);
            transition: width 0.3s ease;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--blue-primary);
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gradient-hero);
            color: var(--white) !important;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 700 !important;
            box-shadow: var(--shadow-medium);
            transition: transform 0.3s ease, box-shadow 0.3s ease !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-strong) !important;
            color: var(--white) !important;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 10px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--navy);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        /* Page Header */
        .page-header {
            padding: 160px 2rem 80px;
            background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: var(--gradient-hero);
            border-radius: 50%;
            opacity: 0.05;
            animation: pulse 8s ease-in-out infinite;
        }

        .page-header::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 400px;
            height: 400px;
            background: var(--gradient-cta);
            border-radius: 50%;
            opacity: 0.05;
            animation: pulse 6s ease-in-out infinite reverse;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .page-header-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
            margin: 0 auto;
        }

        .page-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--white);
            color: var(--blue-primary);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-soft);
            animation: fadeInUp 0.8s ease forwards;
        }

        .page-title {
            font-family: 'Syne', sans-serif;
            font-size: 4rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.1s;
            opacity: 0;
        }

        .page-title .highlight {
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .page-subtitle {
            font-size: 1.3rem;
            color: var(--gray-600);
            line-height: 1.7;
            animation: fadeInUp 0.8s ease forwards;
            animation-delay: 0.2s;
            opacity: 0;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Hero Image Section */
        .hero-image-section {
            padding: 0 2rem 5rem;
            position: relative;
            z-index: 10;
        }

        .hero-image-container {
            max-width: 1200px;
            margin: -60px auto 0;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: var(--shadow-strong);
            position: relative;
        }

        .hero-image-placeholder {
            width: 100%;
            height: 450px;
            background: linear-gradient(135deg, var(--blue-light) 0%, var(--green-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .classroom-illustration {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .classroom-board {
            width: 400px;
            height: 150px;
            background: #2d3748;
            border-radius: 10px;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        .board-content {
            color: var(--white);
            font-family: 'Syne', sans-serif;
            font-size: 1.5rem;
            text-align: center;
        }

        .board-content .formula {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .classroom-desks {
            display: flex;
            gap: 2rem;
        }

        .desk-student {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .student-figure {
            width: 60px;
            height: 80px;
            background: var(--gradient-hero);
            border-radius: 30px 30px 15px 15px;
            position: relative;
            margin-bottom: 10px;
        }

        .student-figure:nth-child(2n) {
            background: var(--gradient-cta);
        }

        .student-figure::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 35px;
            height: 35px;
            background: #ffd5c8;
            border-radius: 50%;
        }

        .student-figure::after {
            content: '';
            position: absolute;
            top: -28px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 18px;
            background: #333;
            border-radius: 15px 15px 0 0;
        }

        .desk {
            width: 80px;
            height: 25px;
            background: #8b5a2b;
            border-radius: 5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 3rem;
            background: linear-gradient(to top, rgba(10, 22, 40, 0.9), transparent);
            color: var(--white);
            text-align: center;
        }

        .hero-overlay h2 {
            font-family: 'Syne', sans-serif;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .hero-overlay p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Mission & Vision Section */
        .mission-vision {
            padding: 6rem 2rem;
            background: var(--white);
            position: relative;
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .mv-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .mv-card {
            background: var(--off-white);
            border-radius: 30px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .mv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-hero);
        }

        .mv-card.vision::before {
            background: var(--gradient-cta);
        }

        .mv-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-strong);
        }

        .mv-pattern {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 100px;
            height: 100px;
            opacity: 0.05;
        }

        .mv-pattern svg {
            width: 100%;
            height: 100%;
        }

        .mv-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .mv-icon.blue {
            background: var(--blue-light);
            color: var(--blue-primary);
        }

        .mv-icon.green {
            background: var(--green-light);
            color: var(--green-primary);
        }

        .mv-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .mv-text {
            font-size: 1.1rem;
            color: var(--gray-600);
            line-height: 1.8;
            position: relative;
            z-index: 2;
        }

        /* Why Choose Us Section */
        .why-choose {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--green-light);
            color: var(--green-dark);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Syne', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray-600);
            max-width: 600px;
            margin: 0 auto;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
        }

        .why-card {
            background: var(--white);
            padding: 2rem 1.5rem;
            border-radius: 24px;
            text-align: center;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .why-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--gradient-hero);
            transition: height 0.4s ease;
            z-index: 0;
        }

        .why-card:hover::after {
            height: 100%;
        }

        .why-card:hover {
            transform: translateY(-10px);
        }

        .why-card>* {
            position: relative;
            z-index: 1;
            transition: color 0.4s ease;
        }

        .why-card:hover .why-icon,
        .why-card:hover .why-title,
        .why-card:hover .why-text {
            color: var(--white);
        }

        .why-card:hover .why-icon {
            background: rgba(255, 255, 255, 0.2);
        }

        .why-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--blue-light);
            color: var(--blue-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 1.5rem;
            transition: all 0.4s ease;
        }

        .why-card:nth-child(2n) .why-icon {
            background: var(--green-light);
            color: var(--green-primary);
        }

        .why-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.75rem;
        }

        .why-text {
            font-size: 0.9rem;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* Founder Section */
        .founder-section {
            padding: 6rem 2rem;
            background: var(--navy);
            position: relative;
            overflow: hidden;
        }

        .founder-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.03;
        }

        .founder-grid {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .founder-image-wrapper {
            position: relative;
        }

        .founder-image {
            width: 100%;
            aspect-ratio: 3/4;
            background: linear-gradient(135deg, var(--blue-primary) 0%, var(--green-primary) 100%);
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-strong);
        }

        .founder-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .founder-avatar {
            width: 180px;
            height: 180px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            position: relative;
        }

        .founder-avatar::before {
            content: '';
            position: absolute;
            top: 20px;
            width: 100px;
            height: 100px;
            background: #ffd5c8;
            border-radius: 50%;
        }

        .founder-avatar::after {
            content: '';
            position: absolute;
            top: 5px;
            width: 90px;
            height: 50px;
            background: #333;
            border-radius: 50px 50px 0 0;
        }

        .founder-avatar-body {
            position: absolute;
            bottom: 0;
            width: 140px;
            height: 80px;
            background: var(--white);
            border-radius: 70px 70px 0 0;
        }

        .founder-name-tag {
            background: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-family: 'Syne', sans-serif;
            font-weight: 700;
            color: var(--navy);
            box-shadow: var(--shadow-medium);
        }

        .founder-badge {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            background: var(--gradient-cta);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-strong);
            color: var(--white);
            text-align: center;
        }

        .founder-badge .years {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1;
        }

        .founder-badge .text {
            font-size: 0.75rem;
            font-weight: 600;
        }

        .founder-content {
            color: var(--white);
        }

        .founder-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            color: var(--green-primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

        .founder-title {
            font-family: 'Syne', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .founder-title span {
            color: var(--green-primary);
        }

        .founder-message {
            font-size: 1.15rem;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2rem;
        }

        .founder-signature {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .signature-line {
            width: 60px;
            height: 3px;
            background: var(--gradient-cta);
            border-radius: 3px;
        }

        .signature-text {
            font-family: 'Syne', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--white);
        }

        .signature-role {
            font-size: 0.9rem;
            color: var(--gray-400);
        }

        /* Achievement Timeline */
        .achievements {
            padding: 6rem 2rem;
            background: var(--white);
        }

        .achievement-strip {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .achievement-item {
            background: var(--off-white);
            border-radius: 24px;
            padding: 2.5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .achievement-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-hero);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .achievement-item:hover::before {
            transform: scaleX(1);
        }

        .achievement-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-strong);
        }

        .achievement-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--blue-light);
            color: var(--blue-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 1.5rem;
        }

        .achievement-item:nth-child(2n) .achievement-icon {
            background: var(--green-light);
            color: var(--green-primary);
        }

        .achievement-number {
            font-family: 'Syne', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
        }

        .achievement-item:nth-child(2n) .achievement-number {
            background: var(--gradient-cta);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .achievement-label {
            font-size: 1rem;
            font-weight: 600;
            color: var(--gray-600);
        }

        /* Values Section */
        .values-section {
            padding: 6rem 2rem;
            background: linear-gradient(180deg, var(--blue-light) 0%, var(--white) 100%);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .value-card {
            background: var(--white);
            border-radius: 24px;
            padding: 2.5rem;
            text-align: center;
            box-shadow: var(--shadow-soft);
            transition: all 0.4s ease;
            position: relative;
        }

        .value-card:hover {
            transform: translateY(-10px) rotate(1deg);
            box-shadow: var(--shadow-strong);
        }

        .value-emoji {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .value-title {
            font-family: 'Syne', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.75rem;
        }

        .value-text {
            font-size: 0.95rem;
            color: var(--gray-600);
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            background: var(--gradient-hero);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
            opacity: 0.05;
        }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-family: 'Syne', sans-serif;
            font-size: 3rem;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .cta-text {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }

        .btn-white {
            background: var(--white);
            color: var(--blue-primary);
        }

        .btn-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .btn-outline-white {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline-white:hover {
            background: var(--white);
            color: var(--blue-primary);
            transform: translateY(-3px);
        }

       

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .why-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 1024px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 2rem;
                box-shadow: var(--shadow-medium);
                gap: 1.5rem;
            }

            .nav-links.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .mv-grid {
                grid-template-columns: 1fr;
            }

            .founder-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .founder-image-wrapper {
                max-width: 350px;
                margin: 0 auto;
            }

            .founder-signature {
                justify-content: center;
            }

            .why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .achievement-strip {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .why-grid {
                grid-template-columns: 1fr;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .cta-title {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .hero-image-placeholder {
                height: 350px;
            }

            .classroom-board {
                width: 280px;
                height: 100px;
            }

            .board-content .formula {
                font-size: 1.2rem;
            }

            .founder-badge {
                width: 100px;
                height: 100px;
                bottom: -10px;
                right: -10px;
            }

            .founder-badge .years {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .page-header {
                padding: 140px 1.5rem 60px;
            }

            .page-title {
                font-size: 2rem;
            }

            .achievement-strip {
                grid-template-columns: 1fr;
            }

            .founder-title {
                font-size: 1.8rem;
            }
        }
