<style>
        * {
            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;
        }

        /* Contact Section */
        .contact-section {
            padding: 8rem 2rem 5rem;
            background: linear-gradient(135deg, #9370db 0%, #f5f6fa 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-container {
            max-width: 1200px;
            width: 100%;
            text-align: center;
        }

        .contact-container h2 {
            font-family: 'Raleway', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1rem;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .contact-container p {
            font-size: 1.5rem;
            color: #ffffff;
            margin-bottom: 3rem;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .team-card {
            background: #ffffff;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .team-card i {
            font-size: 3rem;
            color: #9370db;
            margin-bottom: 1rem;
        }

        .team-card h3 {
            font-family: 'Raleway', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
            color: #2d3436;
            margin-bottom: 0.5rem;
        }

        .team-card p {
            color: #636e72;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

        .team-card a {
            display: inline-block;
            background: #9370db;
            color: #ffffff;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-family: 'Raleway', sans-serif;
            font-weight: 600;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .team-card a: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;
            }

            .contact-section {
                padding: 6rem 1rem 3rem;
            }

            .contact-container h2 {
                font-size: 2.5rem;
            }

            .contact-container p {
                font-size: 1.2rem;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .whatsapp-cta a {
                width: 50px;
                height: 50px;
            }

            .whatsapp-cta i {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 576px) {
            .contact-container h2 {
                font-size: 2rem;
            }

            .contact-container p {
                font-size: 1rem;
            }

            .team-card i {
                font-size: 2.5rem;
            }

            .team-card h3 {
                font-size: 1.3rem;
            }

            .team-card p {
                font-size: 0.9rem;
            }
        }
    </style>