    /* Body & Wrapper */
    .testimonial-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        font-family: 'Inter', sans-serif;
    }

    .card-container {
        position: relative;
        width: 100%;
        height: 490px;
    }

    /* Cards */
    .testimonial-card {
        position: absolute;
        top: 0;
        display: flex;
        height: 490px;
        padding: 40px 40px 40px 0;
        justify-content: flex-start;
        align-items: center;
        gap: 40px;
        border-radius: 100px 0;
        border: 1px solid #FD8A37;
        background: #FFF;
        box-shadow: 0 0 28px 0 rgba(252, 108, 5, 0.20);
        transition: all 0.6s ease;
        opacity: 0;
        z-index: 0;
        transform: translateX(0) scale(1);
    }

    .testimonial-card.active {
        opacity: 1;
        z-index: 3;
        left: 0;
        width: 1008px;
        height: 490px;
        transform: translateX(0) scale(1);
    }

    .testimonial-card.behind {
        opacity: 0.5;
        transform: translateX(655px);
        z-index: 2;
        margin-top: 80px;
        width: 525px;
        height: 315px;
        padding: 24px 24px 24px 0;
        border-radius: 64px 0;
        border: 0.643px solid #FD8A37;
        box-shadow: 0 0 18px 0 rgba(252, 108, 5, 0.20);
    }

    .testimonial-card:not(.active):not(.behind) {
        opacity: 0;
        z-index: -1;
        pointer-events: none;
    }

    .card-image {
        width: 270px;
        height: 490px !important;
        border-radius: 70px 0;
        object-fit: cover;
        flex-shrink: 0;
    }

    .behind .card-image {
        width: 200px;
        height: 200px;
        border-radius: 45px 0;
    }

    .card-content {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .card-title { font-family: Lora, serif; font-size: 34px; line-height: 45px; color: #222; }
    .card-position { font-family: Lora, serif; font-size: 24px; line-height: 32px; color: #FD8A37; }
    .behind .card-title, .behind .card-position { font-size: 22px; line-height: 30px; }
    .card-desc { font-family: Inter, sans-serif; font-size: 16px; line-height: 24px; color: #3B3B3B; }
    .behind .card-desc { font-size: 14px; line-height: 20px; }

    /* Navigation */
    .navigation-container {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .navigation {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .nav-btn {
        display: flex;
        width: 34px;
        height: 34px;
        padding: 9.703px 10.005px 9.7px 9.398px;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: transparent;
        border: 1px solid #222;
        cursor: pointer;
    }
    .nav-btn:hover { opacity: 0.8; }

    .dots { display: flex; gap: 12px; align-items: center; }
    .dot { width: 8px; height: 8px; border-radius: 50%; cursor: pointer; transition: all 0.3s ease; }
    .dot.active { background: #222; transform: scale(1.2); }
    .dot.inactive { background: #888; }

    .quote-icon { position: absolute; top: 40px; left: -20px; font-size: 100px; color: #FD8A37; opacity: 0.2; font-family: 'Lora', serif; transform: rotate(180deg); }

    .carousel-title { text-align: left; font-family: 'Lora', serif; font-size: 42px; color: #222; margin-bottom: 20px; position: relative; padding-bottom: 20px; }
    .carousel-title:after { content: ''; position: absolute; bottom: 0; left: 0; width: 100px; height: 3px; background: #FD8A37; }

