   :root {
            --primary-color: #7c5cff;
            --secondary-color: #2d3748;
            --light-color: #f7fafc;
            --accent-color: #4fd1c5;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--secondary-color);
            background-color: var(--light-color);
        }

        .section {
            padding: 5rem 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: #4a5568;
            margin-bottom: 2rem;
        }

        .testimonial-card {
            background: white;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testimonial-card.highlight {
            border: 2px solid #e2e8f0;
            box-shadow: 0 4px 20px rgba(124, 92, 255, 0.1);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .profile-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid #e2e8f0;
        }

        .profile-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .quote-icon {
            font-size: 2rem;
            color: #cbd5e0;
            margin-right: 1rem;
        }

        .testimonial-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 1rem;
            color: #4a5568;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .testimonial-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1rem;
            border-top: 1px solid #e2e8f0;
        }

        .customer-name {
            font-weight: 600;
            font-size: 1.1rem;
        }

        .customer-role {
            font-size: 0.9rem;
            color: #718096;
        }

        .stars {
            color: #f5b400;
            font-size: 1.2rem;
        }

        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }

        .pagination-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #cbd5e0;
            margin: 0 5px;
            cursor: pointer;
        }

        .pagination-dot.active {
            background: var(--primary-color);
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .testimonial-card {
                padding: 1.5rem;
            }

            .profile-image {
                width: 50px;
                height: 50px;
            }

            .testimonial-title {
                font-size: 1.1rem;
            }

            .customer-name {
                font-size: 1rem;
            }
        }