        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Nunito', sans-serif;
            background: #ffffff;
            color: #2d3436;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.5rem 2rem;
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo-nav {
            font-family: 'Raleway', sans-serif;
            font-size: 2rem;
            color: #9370db;
            font-weight: 700;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            color: #2d3436;
            text-decoration: none;
            font-family: 'Raleway', sans-serif;
            font-weight: 500;
            font-size: 1.1rem;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #9370db;
        }

        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            color: #2d3436;
            cursor: pointer;
        }

        /* Disclaimer Modal */
        .disclaimer-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(147, 112, 219, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            animation: fadeInModal 0.5s ease-out;
        }

        .disclaimer-content {
            background: #ffffff;
            padding: 2rem;
            border-radius: 15px;
            max-width: 500px;
            text-align: center;
            box-shadow: 0 0 20px rgba(147, 112, 219, 0.3);
            border: 1px solid #9370db;
        }

        .disclaimer-content h3 {
            font-family: 'Raleway', sans-serif;
            color: #9370db;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .disclaimer-content p {
            color: #2d3436;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }

        .disclaimer-content button {
            background: #9370db;
            color: #ffffff;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            font-family: 'Raleway', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .disclaimer-content button:hover {
            background: #00b894;
            transform: scale(1.05);
        }

        @keyframes fadeInModal {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            width: 100%;
        }

        .hero-text {
            flex: 1;
            padding-right: 2rem;
            animation: fadeInLeft 1s ease-out;
        }

        .hero-text h1 {
            font-family: 'Raleway', sans-serif;
            font-size: 4rem;
            font-weight: 700;
            color: #2d3436;
            margin-bottom: 1rem;
        }

        .hero-text p {
            font-size: 1.5rem;
            color: #636e72;
            margin-bottom: 2rem;
        }

        .hero-text .cta-button {
            background: #9370db;
            color: #ffffff;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-family: 'Raleway', sans-serif;
            font-weight: 600;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .hero-text .cta-button:hover {
            background: #00b894;
            transform: scale(1.05);
        }

        .hero-image {
            flex: 1;
            text-align: right;
            animation: fadeInRight 1s ease-out;
        }

        .hero-image img {
            max-width: 400px;
        }

        @keyframes fadeInLeft {
            0% { opacity: 0; transform: translateX(-20px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        @keyframes fadeInRight {
            0% { opacity: 0; transform: translateX(20px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        /* Section Styles */
        section {
            padding: 5rem 2rem;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        h2 {
            font-family: 'Raleway', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
            color: #9370db;
        }

        /* Why Choose Us Section */
        #why-choose-us {
            background: #f5f6fa;
        }

        .benefits {
            display: flex;
            justify-content: space-around;
            max-width: 1200px;
            margin: 0 auto;
            gap: 2rem;
        }

        .benefit {
            text-align: center;
            flex: 1;
            background: #ffffff;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .benefit:hover {
            transform: translateY(-5px);
        }

        .benefit i {
            font-size: 3rem;
            color: #9370db;
            margin-bottom: 1rem;
        }

        .benefit h3 {
            font-family: 'Raleway', sans-serif;
            font-size: 1.5rem;
            color: #2d3436;
            margin-bottom: 1rem;
        }

        .benefit p {
            color: #636e72;
        }

        /* Our Solutions Section */
        #solutions {
            background: #ffffff;
        }

        .tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .tab-button {
            background: #f5f6fa;
            color: #2d3436;
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 50px;
            font-family: 'Raleway', sans-serif;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease, color 0.3s ease;
        }

        .tab-button.active {
            background: #9370db;
            color: #ffffff;
        }

        .tab-button:hover {
            background: #9370db;
            color: #ffffff;
        }

        .tab-content {
            display: none;
            max-width: 1200px;
            margin: 0 auto;
        }

        .tab-content.active {
            display: block;
        }

        .solution-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .solution-item {
            background: #f5f6fa;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .solution-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .solution-item i {
            font-size: 2.5rem;
            color: #9370db;
            margin-bottom: 1rem;
        }

        .solution-item h3 {
            font-family: 'Raleway', sans-serif;
            font-size: 1.5rem;
            color: #2d3436;
            margin-bottom: 1rem;
        }

        .solution-item p {
            color: #636e72;
        }

        /* Get in Touch Section */
        #get-in-touch {
            background: #f5f6fa;
            text-align: center;
        }

        #get-in-touch p {
            max-width: 600px;
            margin: 0 auto 2rem;
            color: #636e72;
            font-size: 1.2rem;
        }

        #get-in-touch .cta-button {
            background: #9370db;
            color: #ffffff;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-family: 'Raleway', sans-serif;
            font-weight: 600;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        #get-in-touch .cta-button:hover {
            background: #00b894;
            transform: scale(1.05);
        }

        /* Footer */
        footer {
            background: #ffffff;
            color: #2d3436;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
        }

        .social-icons a {
            color: #9370db;
            font-size: 1.5rem;
            margin: 0 0.5rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-icons a:hover {
            color: #00b894;
            transform: translateY(-5px);
        }

        /* WhatsApp CTA Button */
        .whatsapp-cta {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
        }

        .whatsapp-cta a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: #9370db;
            color: #ffffff;
            border-radius: 50%;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(147, 112, 219, 0.4);
            transition: all 0.3s ease;
        }

        .whatsapp-cta a:hover {
            background: #00b894;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 184, 148, 0.4);
        }

        .whatsapp-cta i {
            font-size: 2rem;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                background: #ffffff;
                width: 100%;
                flex-direction: column;
                padding: 1rem 0;
                text-align: center;
                box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 1rem 0;
            }

            .hero-content {
                flex-direction: column;
                text-align: center;
            }

            .hero-text {
                padding-right: 0;
                margin-bottom: 2rem;
            }

            .hero-image {
                text-align: center;
            }

            .hero-text h1 {
                font-size: 3rem;
            }

            .hero-text p {
                font-size: 1.2rem;
            }

            .hero-image img {
                max-width: 300px;
            }

            .benefits {
                flex-direction: column;
                gap: 3rem;
            }

            .tabs {
                flex-wrap: wrap;
            }

            h2 {
                font-size: 2rem;
            }

            .disclaimer-content {
                max-width: 90%;
                padding: 1.5rem;
            }

            .whatsapp-cta a {
                width: 50px;
                height: 50px;
            }

            .whatsapp-cta i {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 576px) {
            .hero-text h1 {
                font-size: 2.5rem;
            }

            .hero-text p {
                font-size: 1rem;
            }

            section {
                padding: 3rem 1rem;
            }
        }
