body {
    font-family: 'Vazirmatn', Arial, sans-serif;
    direction: rtl;
    background: #f8f9fa;
}

.navbar {
    background: #1e3a8a !important;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.hero {
    background: #1e3a8a;
}

.card {
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: none;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.btn-primary {
    background: #0ea5e9;
    border: none;
}

/* استایل برای تصاویر */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
}

/* استایل لوگوهای بیمه (بزرگ‌تر شده) */
.insurance-logo {
    max-width: 200px; /* از 150px به 200px افزایش یافت */
    height: auto;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.insurance-logo:hover {
    transform: scale(1.05);
}

/* استایل کارت‌های خدمات */
.service-card {
    background: white;
}

.service-card .card-title {
    color: #1e3a8a;
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-card ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Footer social links */
.social-links i {
    font-size: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2rem; }
    .row > div { margin-bottom: 1.5rem; }
    .navbar-brand { font-size: 1.2rem; }
    .social-links { font-size: 1.2rem; }
    .insurance-logo { 
        max-width: 140px; /* از 100px به 140px افزایش یافت */
        margin-bottom: 1rem;
    }
    
    .row.justify-content-center > div {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .service-card ul li {
        font-size: 0.9rem;
    }
}
