@font-face {
    font-family: 'Vazir';
    src: url('/static/fonts/Vazir-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Vazir';
    src: url('/static/fonts/Vazir-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Vazir', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background: linear-gradient(135deg, #f0f4f8, #dfe4ea);
    direction: rtl;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 1.8rem;
    color: #5e35b1;
    margin-bottom: 20px;
    text-align: center;
}

.about-content {
    font-size: 1rem;
    color: #444;
    text-align: justify;
}

.about-content p {
    margin-bottom: 15px;
}

.about-content strong {
    color: #5e35b1;
    font-weight: bold;
}

.consultation-btn-wrapper {
    text-align: center;
    margin-top: 30px;
}

.consultation-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(90deg, #28a745, #34c759);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.consultation-btn:hover {
    background: linear-gradient(90deg, #218838, #2cb74c);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .container {
        margin: 10px;
        padding: 15px;
    }

    h2 {
        font-size: 1.5rem;
    }

    .about-content {
        font-size: 0.9rem;
    }

    .consultation-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        margin: 8px;
        padding: 10px;
    }

    h2 {
        font-size: 1.3rem;
    }

    .about-content {
        font-size: 0.85rem;
    }

    .consultation-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}