* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', 'IRANSans', Tahoma, sans-serif;
    background-color: #ffffff;
    color: #1565C0; /* همه متن‌ها به رنگ آبی */
    line-height: 1.6;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== رنگ اصلی آبی ========== */
:root {
    --blue: #1565C0;
    --gray-light: #E0E0E0;
}

/* ========== هدر و نویگیشن ========== */
.main-header {
    padding: 20px 0;
    background: white;
    border-bottom: 1px solid rgba(21, 101, 192, 0.1);
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #1565C0;
    font-weight: 500;
    transition: opacity 0.2s;
}

.nav-link:hover {
    opacity: 0.7;
}

/* ========== بخش Hero با لوگوی بزرگ ========== */
.hero {
    padding: 60px 0 80px;
    background: white;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.logo-container {
    margin-bottom: 32px;
}

.hero-logo {
    width: 720px;
    max-width: 80%;  /* در موبایل کوچک می‌شود */
    height: auto;
    display: block;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1565C0;
}

.hero-description {
    font-size: 1.2rem;
    color: #1565C0;
    opacity: 0.85;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== دکمه‌ها با border-radius: 8px ========== */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;  /* گوشه گرد 8 پیکسل */
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: inherit;
}

.btn-primary {
    background: #1565C0;
    color: white;
    border: 2px solid #1565C0;
}

.btn-primary:hover {
    background: #0d4b9e;
    border-color: #0d4b9e;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #1565C0;
    border: 2px solid #1565C0;
}

.btn-outline:hover {
    background: #1565C0;
    color: white;
    transform: translateY(-2px);
}

/* ========== بخش ویژگی‌ها ========== */
.features {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: #1565C0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(21, 101, 192, 0.03);
    border-radius: 12px;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(21, 101, 192, 0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1565C0;
}

.feature-card p {
    color: #1565C0;
    opacity: 0.8;
    line-height: 1.5;
}

/* ========== فوتر ========== */
.main-footer {
    text-align: center;
    padding: 40px 0;
    background: rgba(21, 101, 192, 0.02);
    border-top: 1px solid rgba(21, 101, 192, 0.1);
    color: #1565C0;
    opacity: 0.7;
    font-size: 0.85rem;
}

/* ========== ریسپانسیو برای موبایل ========== */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .main-nav {
        gap: 24px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-logo {
        max-width: 70%;  /* لوگو در موبایل 70% عرض صفحه */
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    .btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 90%;  /* در گوشی‌های خیلی کوچک 90% */
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        gap: 12px;
    }
}