/* ==========================================================================
   TAILOR BAZAR - TERMS OF SERVICE POLICY STYLESHEET
   ========================================================================== */

.terms-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.terms-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}
.terms-card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
}
.terms-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.terms-icon.blue { background: #eff6ff; color: #2563eb; }
.terms-icon.purple { background: #f5f3ff; color: #7c3aed; }
.terms-icon.green { background: #ecfdf5; color: #059669; }
.terms-icon.rose { background: #fff1f2; color: #e11d48; }

.terms-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}
.terms-card-text {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}
.terms-details-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .terms-card-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
}
