
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #ffffff;
            color: #2d3436;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navigation Styles (from existing code) */
        .harshwal-nav-header {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

        .harshwal-navbar-container {
            width: 100%;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 70px;
            position: relative;
        }

        .harshwal-nav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            z-index: 1001;
            margin-right: auto;
            flex-shrink: 0;
        }

        .harshwal-nav-logo img {
            height: 40px;
            width: auto;
            display: block;
        }

        .harshwal-nav-menu-list {
            display: flex;
            list-style: none;
            align-items: center;
            justify-content: flex-end;
            gap: 20px;
            height: 100%;
            margin: 0;
            padding: 0;
        }

        .harshwal-nav-menu-item {
            position: relative;
            display: flex;
            align-items: center;
            height: 70px;
        }

        .harshwal-nav-link {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 0 8px;
            display: flex;
            align-items: center;
            gap: 3px;
            transition: color 0.3s;
            height: 100%;
            cursor: pointer;
            white-space: nowrap;
        }

        .harshwal-nav-link:hover {
            color: #1a3d5c;
        }

        .harshwal-nav-link-dropdown::after {
            content: '▼';
            font-size: 9px;
            transition: transform 0.3s;
            margin-left: 2px;
        }

        .harshwal-nav-menu-item:hover .harshwal-nav-link-dropdown::after {
            transform: rotate(180deg);
        }

        .harshwal-nav-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 280px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
            border-radius: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            padding: 10px 0;
            z-index: 999;
        }

        .harshwal-nav-menu-item:hover .harshwal-nav-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .harshwal-nav-dropdown-item {
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            display: block;
            font-size: 14px;
            transition: all 0.3s;
        }

        .harshwal-nav-dropdown-item:hover {
            background: #f5f7fa;
            color: #1a3d5c;
            padding-left: 25px;
        }

        .harshwal-nav-cta-btn {
            background: linear-gradient(45deg, #5f2a52, #862a2a);
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            white-space: nowrap;
            margin-left: 10px;
        }

        .harshwal-nav-cta-btn:hover {
            background: #6d2349;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 44, 92, 0.3);
        }

        .harshwal-nav-mobile-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
            background: none;
            border: none;
            margin-left: 15px;
        }

        .harshwal-nav-mobile-toggle span {
            width: 25px;
            height: 3px;
            background: #1a3d5c;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 3px;
            display: block;
        }

        /* Hero Section */
        .hero-section {
            /* background: linear-gradient(135deg, rgba(95, 42, 82, 0.9), rgba(134, 42, 42, 0.9)),
                        url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3') center/cover; */
            background: linear-gradient(135deg, rgb(0 0 0 / 70%), rgb(0 0 0 / 52%)), url(https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3) center / cover;
            color: white;
            padding: 120px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 30px;
            animation: fadeInUp 0.8s ease;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.95;
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease 0.2s;
            animation-fill-mode: both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Overview Content Section */
        .overview-section {
            padding: 80px 20px;
            background: white;
        }

        .overview-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .overview-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 80px;
        }

        .overview-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
        }

        .overview-text p {
            margin-bottom: 20px;
        }

        .overview-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .overview-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* What Sets Us Apart Section */
        .apart-section {
            background: #f8fafc;
            padding: 80px 20px;
        }

        .apart-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .apart-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a3d5c;
            text-align: center;
            margin-bottom: 60px;
        }

        .apart-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .apart-image {
            order: 1;
        }

        .apart-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .apart-content {
            order: 2;
        }

        .apart-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 20px;
        }

        .button-group {
            display: flex;
            gap: 20px;
            margin: 40px 0;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            color: white;
            padding: 14px 35px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-primary-custom:hover {
            background: linear-gradient(135deg, #4a1f3f, #6b2020);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(95, 42, 82, 0.4);
            color: white;
        }

        .btn-secondary-custom {
            background: transparent;
            color: #5f2a52;
            padding: 14px 35px;
            text-decoration: none;
            border: 2px solid #5f2a52;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-secondary-custom:hover {
            background: #5f2a52;
            color: white;
            transform: translateY(-2px);
        }

        /* Team Section */
        .team-section {
            background: white;
            padding: 80px 20px;
        }

        .team-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .team-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a3d5c;
            margin-bottom: 30px;
        }

        .team-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 50px;
        }

        .team-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
            margin-bottom: 20px;
        }

        .highlight-text {
            font-style: italic;
            color: #5f2a52;
            font-weight: 500;
        }

        .team-image img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .impact-statement {
            font-size: 1.4rem;
            font-weight: 600;
            color: #1a3d5c;
            text-align: center;
            padding: 50px;
            background: linear-gradient(135deg, rgba(95, 42, 82, 0.05), rgba(134, 42, 42, 0.05));
            border-radius: 20px;
            margin: 60px 0;
        }

        .team-link {
            display: inline-block;
            color: #5f2a52;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-align: center;
            width: 100%;
        }

        .team-link:hover {
            color: #862a2a;
            transform: translateX(5px);
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            padding: 80px 20px;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .stats-container {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
            padding: 30px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            border: 1px solid rgba(255,255,255,0.2);
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.15);
        }

        .stat-icon {
            font-size: 3rem;
            color: white;
            margin-bottom: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            color: rgba(255,255,255,0.9);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* FAQ Section */
        .faq-section {
            background: #f8fafc;
            padding: 80px 20px;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a3d5c;
            margin-bottom: 50px;
            text-align: center;
        }

        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .faq-question {
            padding: 25px 30px;
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a3d5c;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            border: none;
            width: 100%;
            text-align: left;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #f8fafc;
        }

        .faq-question.active {
            background: linear-gradient(135deg, rgba(95, 42, 82, 0.05), rgba(134, 42, 42, 0.05));
        }

        .faq-icon {
            font-size: 1.5rem;
            color: #5f2a52;
            transition: transform 0.3s ease;
        }

        .faq-question.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }

        .faq-answer.active {
            padding: 20px 30px 30px;
            max-height: 500px;
        }

        .faq-answer p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #555;
        }

        .faq-cta {
            text-align: center;
            margin-top: 60px;
        }

        .faq-cta-text {
            font-size: 1.3rem;
            font-weight: 600;
            color: #1a3d5c;
            margin-bottom: 25px;
        }

        /* Footer Styles (from existing code) */
        .harshwal-footer {
            background: #000000;
            color: #ffffff;
            padding: 4rem 0 2rem;
        }

        .harshwal-footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .harshwal-footer-cta {
            background: rgba(255, 255, 255, 0.05);
            padding: 2.5rem;
            border-radius: 16px;
            text-align: center;
            margin-bottom: 3rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .harshwal-cta-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .harshwal-cta-description {
            margin-bottom: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .harshwal-btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #5f2a52, #862a2a);
            color: white;
            padding: 14px 35px;
            text-decoration: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .harshwal-btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(66, 153, 225, 0.4);
            color: white;
        }

        .harshwal-footer-grid {
            display: grid;
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        @media (min-width: 1024px) {
            .harshwal-footer-grid {
                grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
                gap: 2rem;
            }
        }

        .harshwal-section-title {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }

        .harshwal-section-text {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .harshwal-footer-links {
            list-style: none;
            padding: 0;
        }

        .harshwal-footer-links li {
            margin-bottom: 0.8rem;
        }

        .harshwal-footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 400;
        }

        .harshwal-footer-link:hover {
            color: #4299e1;
        }

        .harshwal-social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }

        .harshwal-social-link {
            display: flex;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            text-decoration: none;
            transition: background 0.3s ease, transform 0.3s ease;
            font-weight: 600;
        }

        .harshwal-social-link:hover {
            background: #4299e1;
            transform: translateY(-2px);
            color: white;
        }

        .harshwal-contact-info {
            margin-bottom: 1.2rem;
        }

        .harshwal-contact-label {
            color: #ffffff;
            font-weight: 600;
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .harshwal-contact-value {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
            font-size: 0.95rem;
        }

        .harshwal-contact-value a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .harshwal-contact-value a:hover {
            color: #4299e1;
        }

        .harshwal-footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
        }

        .harshwal-footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .harshwal-footer-copyright {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .harshwal-footer-legal {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .harshwal-footer-legal-link {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .harshwal-footer-legal-link:hover {
            color: #4299e1;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .harshwal-navbar-container {
                padding: 0 15px;
                min-height: 60px;
            }

            .harshwal-nav-menu-list {
                position: fixed;
                left: -100%;
                top: 60px;
                flex-direction: column;
                background: white;
                width: 100%;
                text-align: left;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0,0,0,0.1);
                padding: 20px 0;
                gap: 0;
                max-height: calc(100vh - 60px);
                overflow-y: auto;
                justify-content: flex-start;
                align-items: stretch;
            }

            .harshwal-nav-menu-list.harshwal-nav-active {
                left: 0;
            }

            .harshwal-nav-menu-item {
                width: 100%;
                height: auto;
                display: block;
            }

            .harshwal-nav-link {
                padding: 15px 20px;
                width: 100%;
                justify-content: space-between;
                border-bottom: 1px solid #f0f0f0;
                height: auto;
                font-size: 14px;
            }

            .harshwal-nav-mobile-toggle {
                display: flex;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .overview-grid, .apart-grid, .team-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .apart-image {
                order: 2;
            }

            .stats-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .button-group {
                flex-direction: column;
                align-items: stretch;
            }
        }
 