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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9fafb;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            background: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            padding: 1rem 5%;
            position: sticky;
            top: 0;
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        .logo {
            display: flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.5rem;
            color: #2d1f6b;
            text-decoration: none;
        }

        .logo span {
            background: linear-gradient(135deg, #2d1f6b 0%, #5b4ca9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            margin-right: 10px;
            background: linear-gradient(135deg, #2d1f6b 0%, #5b4ca9 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            color: #555;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #2d1f6b;
        }

        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.5rem;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f9fafb 0%, #e6e9f0 100%);
            padding: 6rem 5%;
            text-align: center;
            margin-bottom: 2rem;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 1s ease forwards;
        }

        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: #2d1f6b;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 2rem;
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5%;
        }

        .about-section {
            margin: 5rem 0;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 1s ease forwards 0.2s;
        }

        .about-section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #2d1f6b;
        }

        .about-section p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #444;
        }

        /* Features Section */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 1s ease forwards 0.4s;
        }

        .feature-card {
            background: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: #2d1f6b;
            background: linear-gradient(135deg, #2d1f6b 0%, #5b4ca9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .feature-card h3 {
            margin-bottom: 1rem;
            color: #333;
        }

        /* Why We Exist Section */
        .why-section {
            margin: 5rem 0;
            padding: 4rem;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 1s ease forwards 0.6s;
        }

        .why-section h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: #2d1f6b;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            padding: 5rem 0;
            margin: 3rem 0;
            background: linear-gradient(135deg, #2d1f6b 0%, #5b4ca9 100%);
            border-radius: 10px;
            color: #fff;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 1s ease forwards 0.8s;
        }

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

        .cta-section p {
            max-width: 600px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
        }

        /* Button Styles */
        .btn {
            display: inline-block;
            padding: 1rem 2rem;
            border-radius: 50px;
            background: #fff;
            color: #2d1f6b;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
        }

        /* Footer */
        footer {
            background: #fff;
            padding: 3rem 5%;
            box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            flex: 1 1 300px;
            margin-bottom: 2rem;
        }

        .footer-logo a {
            font-weight: 700;
            font-size: 1.5rem;
            color: #2d1f6b;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }

        .footer-links {
            flex: 1 1 200px;
            margin-bottom: 2rem;
        }

        .footer-links h4 {
            margin-bottom: 1rem;
            color: #2d1f6b;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links a {
            color: #666;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #2d1f6b;
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #eee;
            color: #777;
        }

        /* Animations */
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background: #fff;
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                box-shadow: 0 4px 12px rgba(0,0,0,0.1);
                transform: translateY(-100%);
                opacity: 0;
                transition: all 0.3s ease;
                pointer-events: none;
            }

            .nav-links.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }

            .nav-links li {
                margin: 1rem 0;
            }

            .menu-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .why-section {
                padding: 2rem;
            }
            
                                * {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    }

    *:focus-visible {
    outline: 2px solid #your-color;
    }
        }