﻿/* Container */
.terms-container {
    background: linear-gradient(to bottom, #e0f0ff, #ffffff);
    padding: 50px 20px;
    font-family: 'Vazir', sans-serif;
}

/* Header */
.terms-header h1 {
    color: #0d6efd;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.terms-header p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
}

/* Sections - Single Column */
.terms-sections {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.terms-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px 20px 70px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .terms-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

    .terms-card h2 {
        color: #0d6efd;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .terms-card p,
    .terms-card ul {
        color: #333;
        line-height: 1.7;
    }

        .terms-card ul li {
            margin-bottom: 5px;
        }

/* Icon Circle */
.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    position: absolute;
    top: 25px;
    left: 20px;
}

/* Icon Colors */
.bg-primary {
    background-color: #0d6efd;
}

.bg-success {
    background-color: #198754;
}

.bg-warning {
    background-color: #ffc107;
}

.bg-danger {
    background-color: #dc3545;
}

.bg-info {
    background-color: #0dcaf0;
}

.bg-secondary {
    background-color: #6c757d;
}

/* Button Gradient */
.btn-gradient {
    background: linear-gradient(45deg, #0d6efd, #198754);
    border: none;
    color: #fff;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

    .btn-gradient:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    }

/* Responsive */
@media (max-width: 768px) {
    .terms-header h1 {
        font-size: 2rem;
    }

    .terms-card {
        padding: 20px 15px 20px 65px;
    }
}
