body{
    font-family: vazirmatn , calibri;
}

.container {
    padding: 20px;
    text-align: center;
}

.container h1 {
    color: #4a176b;
}

.container p {
    font-size: 18px;
    line-height: 1.6;
}

.cta-buttons {
    margin-top: 20px;
}

.cta-buttons a {
    text-decoration: none;
    color: white;
    background-color: #4a176b;
    padding: 10px 20px;
    border-radius: 5px;
    margin: 10px;
    display: inline-block;
    font-size: 16px;
    border-style: solid;
    border-color: white;
    border-radius: 20px;
    
}

.cta-buttons a:hover {
    background-color: white;
    color: #4a176b;
    border-color: #4a176b;
    font-weight: bold;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}   

dl {
    font-weight: bold;
    display: flex;
    flex-wrap: wrap; /* برای ایجاد ردیف‌های جدید */
    justify-content: space-around; /* توزیع متوازن آیتم‌ها */
    gap: 20px; /* فاصله بین آیتم‌ها */
    margin-top: 20px;
    
}
dl li {
    flex: 0 0 45%; /* هر آیتم نصف عرض ردیف را بگیرد */
    background-color: #f4f4f9; /* رنگ پس‌زمینه */
    padding: 15px 20px; /* فضای داخلی آیتم */
    font-size: 23px; /* اندازه متن بزرگ‌تر */
    font-weight: bold; /* متن برجسته‌تر */
    text-align: center; /* متن وسط‌چین */
    border-radius: 10px; /* گوشه‌های گرد */
    transition: all 0.3s ease-in-out; /* انیمیشن برای تغییرات */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* سایه اولیه */
}   
dl li::marker {
    content: ""; /* حذف شکلک پیش‌فرض */
}
dl li:hover {
    background-color: #4a176b; /* تغییر رنگ پس‌زمینه */
    color: #fff; /* تغییر رنگ متن */
    transform: translateY(-5px); /* انیمیشن حرکت به بالا */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* سایه بیشتر */
}
p {
    font-weight: bold;
}

/* --- تبلت (عرض زیر 992px) --- */
@media (max-width: 992px) {
    .container {
        padding: 15px;
    }

    .container h1 {
        font-size: 24px;
    }

    .container p {
        font-size: 16px;
    }

    .cta-buttons a {
        font-size: 15px;
        padding: 8px 16px;
        margin: 8px;
    }

    dl li {
        flex: 0 0 48%;
        font-size: 20px;
        padding: 12px;
    }
}

/* --- موبایل (عرض زیر 576px) --- */
@media (max-width: 576px) {
    .container h1 {
        font-size: 20px;
    }

    .container p {
        font-size: 14px;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons a {
        width: 100%;
        max-width: 250px;
        font-size: 16px;
        margin: 10px 0;
    }

    dl {
        flex-direction: column;
        align-items: stretch;
    }

    dl li {
        flex: 1 0 100%;
        font-size: 18px;
        padding: 15px;
        margin-bottom: 10px;
    }
}
