/* تنظیمات کلی صفحه گارانتی */
.warranty-page-wrapper {
    direction: rtl;
    font-family: 'IRANSans', 'Tahoma', sans-serif; /* در صورت نیاز فونت خود را جایگزین کنید */
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #fcfcfc;
    color: #333;
}

/* هدر صفحه */
.warranty-header {
    text-align: center;
    margin-bottom: 30px;
}

/* آیکون و انیمیشن */
.warranty-icon {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 15px;
    animation: warrantyGlow 2s infinite alternate;
}

@keyframes warrantyGlow {
    from {
        text-shadow: 0 0 5px rgba(0, 86, 179, 0.2);
        transform: scale(1);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 86, 179, 0.6);
        transform: scale(1.05);
    }
}

/* متون هدر */
.warranty-title {
    font-size: 2rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
}

.warranty-subtitle {
    font-size: 1.2rem;
    color: #555;
    font-weight: 600;
    margin-bottom: 15px;
}

.warranty-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* استایل مربوط به تصویر گارانتی */
.warranty-image {
    text-align: center;
    margin-bottom: 40px;
}

.warranty-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    display: block;
    margin: 0 auto;
}

/* کانتینر شبکه کارت‌های قوانین */
.warranty-rules-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

/* استایل کارت‌های قوانین */
.warranty-rule-card {
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.warranty-rule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: #0056b3;
}

.warranty-rule-card h3 {
    font-size: 1.15rem;
    color: #0056b3;
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.warranty-rule-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
    text-align: justify;
}

/* ریسپانسیو برای موبایل */
@media (max-width: 768px) {
    .warranty-title {
        font-size: 1.6rem;
    }
    
    .warranty-subtitle {
        font-size: 1rem;
    }

    .warranty-rules-container {
        grid-template-columns: 1fr;
    }
}
