body {
    font-family: 'Vazirmatn', sans-serif;
    color: #333;
}

.hero {
    background: linear-gradient(120deg, #0d6efd, #0b7dd6);
    padding: 100px 20px;
    color: white;
    text-align: center;
}

.btn {
    transition: all 0.3s ease;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.features .feature-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}
.features .feature-item:hover {
    transform: scale(1.05);
    background: #e9ecef;
}

.faq .accordion-button {
    background: #f8f9fa;
    border: none;
}

.download h2, .newsletter h2, .faq h2 {
    color: #fff;
}

footer a:hover {
    text-decoration: underline;
}

iframe {
    border: 1px solid #ddd;
}