:root {
    --accent-color: #0EA5E9; /* آبی روشن برای تم طراحی سایت */
    --accent-light: #e0f2fe;
}

/* فونت وزیر */

body {
    font-family: 'Vazir', sans-serif;
    direction: rtl;
    margin: 0;
    padding: 0;
    color: #333;
    background: #fff;
}

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

/* سکشن معرفی */
.web-hero {
    text-align: center;
    padding: 60px 20px 40px;
    background: var(--accent-light);
    border-radius: 12px;
    margin-top: 30px;
}
.web-hero h1 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}
.web-hero p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}
.cta-button {
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s ease;
}
.cta-button:hover {
    background: #0284c7;
}

/* بخش موضوعات طراحی سایت */
.web-features {
    text-align: center;
    padding: 60px 0;
}
.web-features h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    color: var(--accent-color);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.feature-box {
    background: #f9f9f9;
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-box h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}
.feature-box p {
    font-size: 1rem;
    color: #555;
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* بخش اعتماد */
.web-trust {
    text-align: center;
    padding: 50px 0;
}
.web-trust h2 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}
.web-trust p {
    font-size: 1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* CTA پایانی */
.web-cta {
    background: var(--accent-color);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    margin-top: 50px;
}
.web-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}
.web-cta .cta-button {
    background: #fff;
    color: var(--accent-color);
    transition: background 0.3s ease, color 0.3s ease;
}
.web-cta .cta-button:hover {
    background: #e0f2fe;
}

/* ریسپانسیو */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .web-hero h1 {
        font-size: 1.5rem;
    }
    .web-cta h2 {
        font-size: 1.5rem;
    }
}
