        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* About Section Styles */
        .about-section {
            padding: 80px 0;
            background-color: white;
        }

        .about-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .about-header h2 {
            font-size: 2.5rem;
            color: #365cf4;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .about-header h2::after {
            content: '';
            display: block;
            width: 70%;
            height: 3px;
            background-color: #365cf4;
            margin: 10px auto 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .about-text {
            padding: 20px;
        }

        .about-text h3 {
            color: #365cf4;
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 20px;
            text-align: justify;
            color: #555;
        }

        .about-highlight {
            background-color: #f1f5fe;
            border-left: 4px solid #365cf4;
            padding: 15px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }

        .about-highlight h4 {
            color: #365cf4;
            margin-bottom: 10px;
        }

        .about-highlight ul {
            margin-left: 20px;
        }

        .about-highlight li {
            margin-bottom: 5px;
        }

        .about-image {
            text-align: center;
        }

        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .map-section {
            padding: 50px 0;
            background-color: #f1f5fe;
        }

        .map-container {
            text-align: center;
        }

        .map-container h3 {
            color: #365cf4;
            font-size: 1.8rem;
            margin-bottom: 30px;
        }

        .map-frame {
            width: 100%;
            height: 450px;
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .stats-section {
            padding: 50px 0;
            background-color: white;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-box {
            background-color: #f1f5fe;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(54, 92, 244, 0.1);
        }

        .stat-icon {
            font-size: 2.5rem;
            color: #365cf4;
            margin-bottom: 15px;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 10px;
        }

        .stat-title {
            color: #666;
            font-size: 1rem;
        }

        /* Footer Styles */
        footer {
            background-color: #333;
            color: white;
            padding: 40px 0;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .footer-info h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .footer-info p {
            margin-bottom: 10px;
        }

        .footer-links h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            color: #ccc;
            text-decoration: none;
            transition: 0.3s;
        }

        .footer-links ul li a:hover {
            color: #365cf4;
        }

        .footer-social h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icons a {
            color: #fff;
            background-color: #555;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: 0.3s;
        }

        .social-icons a:hover {
            background-color: #365cf4;
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #555;
        }

        /* Responsive Styles */
        @media screen and (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }

            .about-image {
                order: -1;
            }

            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media screen and (max-width: 768px) {
            .nav-toggle {
                display: block;
            }

            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: white;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
                padding: 20px;
            }

            nav ul.show {
                display: flex;
            }

            nav ul li {
                margin: 10px 0;
            }

            .dropdown-content {
                position: static;
                box-shadow: none;
                padding-left: 20px;
            }

            .footer-container {
                grid-template-columns: 1fr;
            }
        }

        @media screen and (max-width: 576px) {
            .stats-container {
                grid-template-columns: 1fr;
            }
        }