/* Custom styles for new sections */

/* Testimonials */
#section-testimonials {
    padding: 60px 0;
    background-color: #fff;
}

#pricing-table {
    background-color: #f8f9fa;
}
#section-testimonials .de_testi.opt-2 {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    background: #fff;
    transition: all 0.3s ease;
}

#section-testimonials .de_testi.opt-2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#section-testimonials .de_testi_by img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

/* Payment Methods */
#section-payment-methods {
    background-color: #fff;
}

.payment-icon {
    max-height: 60px;
    transition: all 0.3s ease;
}

.payment-icon:hover {
    transform: translateY(-5px);
}

/* Guarantees */
#section-guarantees .feature-box.f-boxed {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    background: #fff;
    transition: all 0.3s ease;
    height: 100%;
}

#section-guarantees .feature-box.f-boxed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#section-guarantees .i-boxed {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    font-size: 28px;
    margin-bottom: 20px;
}

/* Trust Badges */
.trust-badges-section {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.payment-methods img, .security-badges img {
    height: 40px;
    margin: 0 5px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.payment-methods img:hover, .security-badges img:hover {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #section-testimonials .de_testi.opt-2,
    #section-guarantees .feature-box.f-boxed {
        margin-bottom: 20px;
    }
    
    .payment-icon {
        max-height: 40px;
    }
    
    .payment-methods img, .security-badges img {
        height: 25px;
        margin: 0 3px;
    }
}