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

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            width: 100%;
            height: 70vh;
            background: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1950&q=80') center center / cover no-repeat fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            overflow: hidden;
        }

        .hero-section .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .hero-section .hero-content {
            position: relative;
            z-index: 2;
            padding: 0 20px;
            max-width: 800px;
        }

        .hero-section h1 {
            font-size: 3rem;
            margin-bottom: 15px;
        }

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

        /* Mission & Vision Section */
        .mv-section {
            padding: 80px 10%;
            display: flex;
            gap: 40px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .mv-card {
            flex: 1 1 300px;
            background: #f9f9f9;
            border-radius: 12px;
            padding: 30px 20px;
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .mv-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .mv-card h2 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #49007F;
        }

        .mv-card p {
            font-size: 1rem;
            color: #555;
        }

        /* Call to Action Section */
        .cta-section {
            background: #49007F;
            color: #fff;
            padding: 60px 10%;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .cta-section button {
            background: #fff;
            color: #49007F;
            border: none;
            padding: 15px 35px;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cta-section button:hover {
            background: #ff6b6b;
            color: #fff;
        }

        /* Footer */
        /* footer {
            background: #222;
            color: #fff;
            text-align: center;
            padding: 25px 10px;
        } */

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section {
                height: 50vh;
                background-attachment: scroll; /* mobile fallback */
            }

            .hero-section h1 {
                font-size: 2rem;
            }

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

            .mv-section {
                padding: 50px 5%;
                gap: 20px;
            }

            .mv-card h2 {
                font-size: 1.5rem;
            }

            .mv-card p {
                font-size: 0.95rem;
            }

            .cta-section h2 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                height: 60vh;
            }

            .mv-card {
                flex: 1 1 100%;
            }
        }