        :root {
            --blue: #2563eb;
            --teal: #2dd4bf;
            --violet: #7c3aed;
            --pink: #ec4899;
            --dark: #0f172a;
            --light: #f8fafc;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Poppins", sans-serif;
        }

        body {
            background-color: #f1f5f9;
            color: var(--dark);
            overflow-x: hidden;
        }

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 0.8rem 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo img {
            height: 1.8rem;
        }

        .logo h2 {
            font-weight: 700;
            background: linear-gradient(90deg, var(--blue), var(--teal));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-size: 0.9rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--blue);
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--blue), var(--teal));
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-button {
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            background: linear-gradient(90deg, var(--blue), var(--teal));
            color: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        }

        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            padding: 0 5%;
            position: relative;
            overflow: hidden;
            margin-top: 4rem;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==");
            opacity: 0.5;
            z-index: -1;
        }

        .hero-content {
            max-width: 600px;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(90deg,
                    var(--blue),
                    var(--violet),
                    var(--pink));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            color: #64748b;
            line-height: 1.6;
        }

        .button-group {
            display: flex;
            gap: 1rem;
        }

        .secondary-button {
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            background: transparent;
            color: var(--blue);
            border: 2px solid var(--blue);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .secondary-button:hover {
            background: rgba(37, 99, 235, 0.1);
            transform: translateY(-2px);
        }

        .hero-image {
            position: absolute;
            right: 5%;
            width: 40%;
            max-width: 600px;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .section {
            padding: 5rem 5%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, var(--blue), var(--teal));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .section-title p {
            color: #64748b;
            max-width: 600px;
            margin: 0 auto;
        }

        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .about-text p {
            color: #64748b;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .about-image {
            flex: 1;
            position: relative;
        }

        .about-image img {
            width: 100%;
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .features {
            background-color: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--blue), var(--teal));
            color: white;
            font-size: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .feature-card p {
            color: #64748b;
            line-height: 1.6;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            max-width: 1300px;
            margin: 0 auto;
        }

        .pricing-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .pricing-card.popular {
            border: 2px solid var(--teal);
        }

        .popular-badge {
            position: absolute;
            top: 0;
            right: 0;
            background: var(--teal);
            color: white;
            padding: 0.3rem 1.5rem;
            font-size: 0.8rem;
            font-weight: 600;
            border-bottom-left-radius: 1rem;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .price {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--blue);
        }

        .price span {
            font-size: 1rem;
            color: #64748b;
            font-weight: 400;
        }

        .pricing-features {
            margin-bottom: 2rem;
        }

        .pricing-features li {
            list-style: none;
            margin-bottom: 0.8rem;
            color: #64748b;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .pricing-features li::before {
            content: "✓";
            color: var(--teal);
            font-weight: bold;
        }

        @media (max-width: 1200px) {
            .pricing-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .pricing-cards {
                grid-template-columns: 1fr;
                max-width: 500px;
            }
        }

        .testimonials {
            background-color: white;
        }

        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
                0 2px 4px -1px rgba(0, 0, 0, 0.06);
            margin: 0 1rem;
        }

        .testimonial-content {
            margin-bottom: 1.5rem;
            color: #64748b;
            font-style: italic;
            line-height: 1.6;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author-info h4 {
            color: var(--dark);
            margin-bottom: 0.2rem;
        }

        .author-info p {
            color: #64748b;
            font-size: 0.9rem;
        }

        .gallery {
            background-color: white;
        }

        .avatar-gallery {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .avatar-item {
            display: block;
            border-radius: 50%;
            overflow: hidden;
            transition: all 0.3s ease;
            aspect-ratio: 1/1;
            position: relative;
        }

        .avatar-item:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .avatar-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .avatar-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 33%;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0.5rem;
            transform: translateY(100%);
            transition: all 0.3s ease;
            border-bottom-left-radius: 50%;
            border-bottom-right-radius: 50%;
        }

        .avatar-item:hover .avatar-info {
            transform: translateY(0);
        }

        .avatar-name {
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.2rem;
        }

        .avatar-profession {
            font-size: 0.7rem;
            opacity: 0.9;
        }

        @media only screen and (max-width: 768px),
        only screen and (hover: none) and (pointer: coarse) {
            .avatar-gallery {
                grid-template-columns: repeat(3, minmax(100px, 1fr));
                gap: 1rem;
                padding: 0 10px;
                display: grid !important;
            }

            .avatar-item {
                display: flex !important;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                border-radius: 0;
                margin-bottom: 1rem;
                text-decoration: none;
                width: 100%;
                height: auto;
                position: relative;
                overflow: visible;
                aspect-ratio: unset;
            }

            .avatar-item img {
                width: 80px;
                height: 80px;
                min-width: 80px;
                min-height: 80px;
                border-radius: 50%;
                margin-bottom: 0.5rem;
                object-fit: cover;
                border: 2px solid white;
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
                display: block;
            }

            .avatar-info {
                position: relative !important;
                display: flex !important;
                flex-direction: column;
                background: transparent !important;
                color: var(--dark) !important;
                transform: none !important;
                padding: 0 !important;
                text-align: center;
                height: auto;
                width: 100%;
                opacity: 1 !important;
                visibility: visible !important;
                border-radius: 0;
                transition: none;
                -webkit-transform: none !important;
                -moz-transform: none !important;
                -ms-transform: none !important;
                -o-transform: none !important;
            }

            .avatar-name {
                font-size: 0.85rem;
                margin-bottom: 0.1rem;
                color: var(--dark);
                font-weight: 600;
                line-height: 1.3;
                display: block;
                overflow: visible;
                text-overflow: clip;
                white-space: normal;
                word-break: break-word;
                -webkit-line-clamp: unset;
                -webkit-box-orient: unset;
            }

            .avatar-profession {
                font-size: 0.7rem;
                color: #64748b;
                line-height: 1.2;
                padding: 0 3px;
                display: block;
                overflow: visible;
                text-overflow: clip;
                white-space: normal;
                word-break: break-word;
            }

            @media (hover: none) {

                .avatar-item:hover,
                .avatar-item:active,
                .avatar-item:focus {
                    transform: none !important;
                    box-shadow: none !important;
                }

                .avatar-item:hover .avatar-info,
                .avatar-item:active .avatar-info,
                .avatar-item:focus .avatar-info {
                    transform: none !important;
                }
            }
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1rem;
            border-radius: 0.5rem;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .faq-question {
            padding: 1.5rem;
            background: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: #f8fafc;
        }

        .faq-question h3 {
            font-size: 1.1rem;
            color: var(--dark);
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
        }

        .faq-answer p {
            padding-bottom: 1.5rem;
            color: #64748b;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        footer {
            background: var(--dark);
            color: white;
            padding: 5rem 5% 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .footer-logo img {
            height: 2rem;
        }

        .footer-logo h2 {
            font-weight: 700;
            color: white;
        }

        .footer-about p {
            color: #94a3b8;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--blue);
            transform: translateY(-3px);
        }

        .footer-links h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #94a3b8;
            margin-bottom: 1rem;
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
        }

        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3rem;
            }

            .hero-image {
                width: 45%;
            }
        }

        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding-top: 3rem;
                height: auto;
            }

            .hero-content {
                max-width: 100%;
                margin-bottom: 3rem;
            }

            .button-group {
                justify-content: center;
            }

            .hero-image {
                position: relative;
                right: auto;
                width: 80%;
                margin: 0 auto;
            }

            .about-content {
                flex-direction: column;
            }

            .pricing-cards {
                flex-direction: column;
                align-items: center;
            }

            .pricing-card {
                width: 100%;
                max-width: 400px;
            }
        }

        @media (max-width: 576px) {
            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }
        }

        @keyframes glow {
            0% {
                box-shadow: 0 0 5px rgba(37, 99, 235, 0.5);
            }

            50% {
                box-shadow: 0 0 20px rgba(37, 99, 235, 0.8);
            }

            100% {
                box-shadow: 0 0 5px rgba(37, 99, 235, 0.5);
            }
        }

        .glow-effect {
            animation: glow 3s infinite;
        }