.customer-love-section {
    background: #f8faf7;
    border: 1px solid #e5ebde;
    border-radius: 16px;
    padding: 38px 16px 28px;
    font-family: Arial, sans-serif;
}

.customer-love-head h6 {
    color: #2f8a55;
    font-size: 14px;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 8px;
}

.customer-love-head h2 {
    color: #1f2937;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 12px;
    font-weight: 700;
}

.customer-love-head h2 span {
    color: #84c225;
}

.customer-love-head p {
    max-width: 860px;
    margin: 0 auto;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.6;
}

.customer-love-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.love-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 24px 24px 20px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.quote-icon {
    font-size: 52px;
    line-height: 1;
    color: #d3a953;
    margin-bottom: 12px;
}

.love-text {
    color: #2f2f2f;
    font-size: 20px;
    line-height: 1.55;
    font-style: italic;
    margin-bottom: 26px;
}

.love-user {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
}

.user-badge {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f4b000, #ea8a00);
    color: #1b150b;
    font-weight: 800;
    font-size: 30px;
}

.user-meta h4 {
    margin: 0 0 2px;
    color: #1f2937;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
}

.user-meta span {
    color: #6b7280;
    font-size: 15px;
}

.love-stars {
    margin-top: 14px;
    color: #f4b000;
    letter-spacing: 3px;
    font-size: 20px;
}

@media (max-width: 1200px) {
    .customer-love-head h2 {
        font-size: 44px;
    }

    .love-text {
        font-size: 17px;
    }

    .user-meta h4 {
        font-size: 22px;
    }

    .user-meta span {
        font-size: 15px;
    }

    .user-badge {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .customer-love-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .customer-love-section {
        border-radius: 12px;
        padding: 28px 12px 18px;
    }

    .customer-love-head h6 {
        font-size: 12px;
    }

    .customer-love-head h2 {
        font-size: 30px;
    }

    .customer-love-head p {
        font-size: 15px;
        line-height: 1.5;
    }

    .customer-love-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 18px;
    }

    .love-card {
        border-radius: 14px;
        padding: 18px;
        min-height: auto;
    }

    .quote-icon {
        font-size: 34px;
        margin-bottom: 8px;
    }

    .love-text {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .user-badge {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .user-meta h4 {
        font-size: 17px;
    }

    .user-meta span {
        font-size: 13px;
    }

    .love-stars {
        font-size: 16px;
        letter-spacing: 2px;
        margin-top: 10px;
    }
}
