        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            text-align: center;
            background-color: rgba(37, 99, 235, 0.05);
        }
        .hero-section h1 {
            font-size: 2.25rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: #111827;
        }
        .hero-section h1 span {
            color: #2563eb;
        }
        .hero-section p {
            font-size: 1.125rem;
            color: #4b5563;
            max-width: 48rem;
            margin: 0 auto 2rem auto;
        }
        .hero-section .cta-button {
            background-color: #22c55e;
            color: white;
            padding: 1rem 2rem;
            font-size: 1.125rem;
            text-decoration: none;
        }
        .hero-section .cta-button:hover {
            background-color: #1d4ed8;
        }
        .hero-background {
            position: absolute;
            inset: 0;
            z-index: -1;
            opacity: 0.2;
            background-size: cover;
            background-position: center;
        }

        /* General Section Styling */
        section {
            padding: 5rem 0;
        }
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        .section-title h2 {
            font-size: 2.25rem;
            font-weight: 800;
            color: #111827;
        }
        .section-title p {
            font-size: 1.125rem;
            color: #4b5563;
            margin-top: 0.5rem;
        }

        /* Why Partner With Us Section */
        #partner .content-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3rem;
        }
        #partner img {
            width: 100%;
            border-radius: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
        }
        #partner .text-content h2 {
            font-size: 2.25rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        #partner .text-content p {
            font-size: 1.125rem;
            color: #4b5563;
            margin-bottom: 2rem;
        }
        #partner ul {
            list-style: none;
        }
        #partner ul li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1rem;
        }
        #partner .icon-wrapper {
            flex-shrink: 0;
            width: 1.5rem;
            height: 1.5rem;
            border-radius: 9999px;
            background-color: #22c55e; /* green-500 */
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            margin-top: 0.25rem;
        }
        #partner .icon-wrapper svg {
            width: 1rem;
            height: 1rem;
        }
        #partner h4 {
            font-size: 1.125rem;
            font-weight: 600;
        }


        #experience {
            background-color: #f9fafb;
        }
        .experience-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }
        .experience-card {
            background-color: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
        }
        .experience-card h3 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: #2563eb;
        }
        .experience-card .green-text {
            color: #22c55e;
        }
        .experience-card p {
            font-size: 1.125rem;
            font-weight: 600;
            color: #374151;
        }

        /* Testimonials Section */
        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .testimonial-card {
            background-color: var(--white);
            padding: 2rem;
            border-radius: 0.75rem;
            border: 1px solid var(--gray-200);
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .testimonial-quote {
            font-size: 0.95rem;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 1.5rem;
            flex: 1;
            position: relative;
            padding-left: 1rem;
            border-left: 3px solid var(--brand-blue);
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .client-info img,
        .client-info .avatar-placeholder {
            width: 3rem;
            height: 3rem;
            border-radius: 9999px;
            object-fit: cover;
            border: 2px solid var(--gray-100);
        }

        .avatar-placeholder {
            background: linear-gradient(135deg, #e0e7ff, #dbeafe);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .avatar-placeholder svg {
            width: 1.5rem;
            height: 1.5rem;
            color: var(--brand-blue);
        }

        .client-info .name {
            font-weight: 700;
            color: var(--gray-900);
            font-size: 0.9rem;
        }

        .client-info .title {
            font-size: 0.8rem;
            color: var(--gray-500);
        }

        @keyframes slide {
            from {
                transform: translateX(0);
            }
            to{
                transform: translateX(-100%);
            }
        }

        .logos {
            overflow: hidden;
            padding-top: 80px;
            background: white;
            white-space: nowrap;
            position: relative;
        }

        .logos:hover .logos-slide {
            animation-play-state: paused;
        }

        .logos:before, .logos:after {
            position: absolute;
            top: 0;
            width: 250px;
            height: 100%;
            content: "";
            z-index: 2;
        }

        .logos:before {
            left: 0;
            background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
        }

        .logos:after {
            right: 0;
            background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
        }

        .logos-slide {
            display: inline-block;
            white-space: nowrap;
            animation: 15s slide infinite linear;
        }

        .logos-slide img {
            height: 150px;
            width: 200px;
            margin: 0 40px;
        }

        #faq {
            background-color: #f9fafb;
        }
        .faq-container {
            max-width: 48rem;
            margin: 0 auto;
        }
        .faq-item {
            background-color: white;
            border-radius: 0.5rem;
            box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
            margin-bottom: 1rem;
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem;
            cursor: pointer;
        }
        .faq-question h3 {
            font-size: 1.125rem;
            font-weight: 600;
        }
        .faq-question svg {
            width: 1.5rem;
            height: 1.5rem;
            color: #2563eb;
            transition: transform 0.3s ease;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 1.5rem;
        }
        .faq-answer p {
            padding-bottom: 1.5rem;
            color: #4b5563;
        }
        .faq-question.open + .faq-answer {
            max-height: 200px;
        }
        .faq-question.open svg {
            transform: rotate(180deg);
        }

        .trusted-by {
        }

        @media (max-width: 767px) {
            .experience-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
        }

        @media (min-width: 768px) {
            .hero-section h1 {
                font-size: 3.75rem;
            }
            .hero-section p {
                font-size: 1.25rem;
            }
            #partner .content-wrapper {
                flex-direction: row;
            }
            #partner .text-content, #partner .image-wrapper {
                width: 50%;
            }
            .experience-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .hero-section h1 {
                font-size: 4.5rem;
            }
            .testimonials-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
    }