.reviews-title {
    font-family: 'Georgia', serif !important;
    font-size: 2.5rem !important;
    font-weight: 300 !important;
    letter-spacing: 3px !important;
    color: white !important;
    margin: 0 0 60px 0 !important;
    text-align: left !important;
    text-transform: capitalize !important;
    padding-left: 20px !important;
    position: relative !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* Redesign testimonial slider layout */
.testimonial-slider {
    position: relative !important;
    display: block !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Position slider controls inline with header - exact alignment */
.slider-controls {
    display: flex !important;
    gap: 10px !important;
    z-index: 10 !important;
    margin-right: 20px !important;
}

/* Make buttons square with thinner edges */
.slider-nav {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important; /* Changed from 2px to 1px */
    border-radius: 0 !important;
    width: 45px !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    color: white !important;
    position: static !important;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: scale(1.05) !important;
}

.slider-nav svg {
    width: 20px !important;
    height: 20px !important;
}

/* Adjust testimonial content */
.testimonial-content {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 180px !important;
}

@media (max-width: 768px) {
    .reviews-title {
        font-size: 1.2rem !important;
        padding-left: 15px !important;
        text-transform: capitalize !important;
        /* Keep flex row for inline alignment on mobile */
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    .slider-controls {
        margin-right: 15px !important;
        gap: 8px !important;
    }
    
    .slider-nav {
        width: 35px !important;
        height: 35px !important;
        border-radius: 0 !important;
    }
    
    .slider-nav svg {
        width: 18px !important;
        height: 18px !important;
    }
    
    .testimonial-content {
        min-height: 140px !important;
    }
}

@media (max-width: 480px) {
    .reviews-title {
        font-size: 1rem !important;
        letter-spacing: 1px !important;
        margin-bottom: 40px !important;
        text-transform: capitalize !important;
        padding-left: 10px !important;
        /* Maintain inline layout even on smallest screens */
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    .slider-controls {
        margin-right: 10px !important;
        gap: 6px !important;
    }
    
    .slider-nav {
        width: 32px !important;
        height: 32px !important;
        border-radius: 0 !important;
    }
    
    .slider-nav svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    .testimonial-content {
        min-height: 120px !important;
    }
}