/*
 * Money Back Guarantee Section Styles
 * ====================================
 * Extracted from: new-index.css (Lines 4892-4979)
 * 
 * Purpose:
 * - Money back guarantee section styling
 * - Guarantee promise display and layout
 * 
 * This module contains all styles for the money back guarantee
 * section that reassures customers about purchase protection.
 */

.money-back-section {
    width: 100%;
    padding: 2.4rem 0;
    background: #ffffff;
}

.money-back-container {
    max-width: 1600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1e63e9, #0b3bbd);
    border-radius: 18px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px;
    color: #ffffff;
    box-shadow: 0 25px 60px rgba(30, 99, 233, 0.25);
}

/* LEFT CONTENT */
.money-back-content {
    max-width: 520px;
}

.money-back-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.money-back-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #e6edff;
}

.money-back-content .link {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

/* BUTTON */
.money-back-btn {
    display: inline-block;
    margin-top: 22px;
    padding: 12px 26px;
    background: #ffffff;
    color: #1e63e9;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.money-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.25);
}

/* RIGHT IMAGE */
.money-back-image img {
    width: 170px;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.25));
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .money-back-container {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 30px;
        gap: 0px;
    }

    .money-back-image img {
        width: 140px;
    }

    .money-back-content h2 {
        font-size: 28px;
    }
}

