
        :root {
            --primary-color: #7C3AED;
            --secondary-color: #A78BFA;
            --accent-color: #FFF57E;
            --accent-dark: #FFB76C;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }
        
        .navbar {
            padding: 1.5rem 0;
            transition: all 0.3s ease;
        }
        
        .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: #fff;
            font-weight: 500;
            padding: 10px 25px;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(38, 204, 194, 0.3);
        }
        
        .hero-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4ecf7 100%);
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--secondary-color);
        }
        
        .card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .card-img-top {
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
            height: 200px;
            object-fit: cover;
        }
        
        .counter-box {
            text-align: center;
            padding: 30px;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            border-radius: 15px;
            color: white;
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-text {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
            padding: 100px 0;
            border-radius: 20px;
            margin: 80px 0;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            font-weight: 600;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: #f8fafc;
        }
        
        .faq-answer.active {
            padding: 20px;
            max-height: 200px;
        }
        
        .review-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 30px;
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .review-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .review-info h5 {
            margin: 0;
            font-weight: 600;
        }
        
        .review-info p {
            margin: 0;
            color: #64748b;
            font-size: 0.9rem;
        }
        
        .review-rating {
            color: var(--accent-color);
        }
        
        .review-text {
            font-style: italic;
            color: #475569;
            line-height: 1.6;
        }
        
        .footer {
            background: #1a202c;
            color: #e2e8f0;
            padding: 80px 0 30px;
        }
        
        .footer h5 {
            color: white;
            margin-bottom: 25px;
            font-weight: 600;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #cbd5e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--primary-color);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 50px 0 0 50px;
        }
        
        .newsletter-form button {
            padding: 12px 25px;
            border: none;
            border-radius: 0 50px 50px 0;
            background: var(--primary-color);
            color: white;
            font-weight: 500;
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid #2d3748;
            text-align: center;
            color: #718096;
            font-size: 0.9rem;
        }
        
        .copyright a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .read-more-btn {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .read-more-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        .vision-mission-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        
        .vision-mission-card i {
            font-size: 3rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
