.polaris-testimonial-slider {
    position: relative;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem;
    scroll-margin-top: 20px;
}

.polaris-testimonial-container {
    background-color: #2A3990;
    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);
    overflow: hidden;
    position: relative;
    margin: 2rem 0;
}

.polaris-testimonial-slide {
    display: none;
}

.polaris-testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.polaris-testimonial-content {
    padding: 2rem;
}

.polaris-testimonial-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.polaris-testimonial-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.polaris-testimonial-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.625;
}

.testimonial-author {
    font-weight: 600;
}

.author-name {
    color: #2A3990;
}

.author-role {
    color: #6B7280;
    font-size: 0.875rem;
}

.polaris-testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 0;
}

.polaris-testimonial-dots-top {
    margin-bottom: 0;
}

.polaris-testimonial-dots-bottom {
    margin-top: 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #CBD5E1;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    outline: none;
}

.dot:hover {
    background-color: #94A3B8;
}

.dot.active {
    background-color: #2A3990;
    transform: scale(1.2);
}

/* Accessibility improvements */
.dot:focus {
    box-shadow: 0 0 0 2px #2A3990;
}