/* USP Section Styles */
section.usp-section {
    margin: 60px 0;
}

section.usp-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--support-900);
    font-size: 32px;
    font-weight: 700;
}

section.usp-section .usp-card {
    background: var(--white);
    border: 1.5px solid var(--support-300);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

section.usp-section .usp-card h3 {
    margin: 0 0 16px 0;
    color: var(--support-900);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}

section.usp-section .usp-card .usp-content {
    color: var(--support-700);
    font-size: 16px;
    line-height: 1.6;
    flex: 1;
}

section.usp-section .usp-card .usp-content p {
    margin: 0 0 12px 0;
}

section.usp-section .usp-card .usp-content p:last-child {
    margin-bottom: 0;
}

/* That's Why Section Styles */
.thats-why-section {
    margin: 60px 0;
}

.thats-why {
    text-transform: unset;
}

.thats-why b {
    text-transform: uppercase;
    color: var(--primary);
}

@media (max-width: 768px) {
    section.usp-section {
        margin: 40px 0 60px;
    }

    section.usp-section .row {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    section.usp-section .row::before, section.usp-section .row::after {
        display: none;
    }
    
    section.usp-section .usp-card .usp-content {
        font-size: 15px;
    }
}
