@font-face {
    font-family: 'IranianSans';
    src: url('/main/fonts/IranianSans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'IranianSans', Arial, sans-serif;
    direction: rtl;
    text-align: right;
    background-color: #f5f5f5;
    margin: 0;
}

.chami-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 1rem 2rem;
}

.chami-main-content {
    display: block;
    overflow: hidden;
}

.chami-about-section {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.8s ease-in-out;
}

.chami-section-heading {
    font-size: 1.8rem;
    color: #292b76;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.chami-section-heading::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: #292b76;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
}

.chami-about-content {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    padding: 1rem;
    text-align: center;
}

.chami-about-content p {
    margin: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .chami-about-section {
        padding: 1.5rem;
    }

    .chami-section-heading {
        font-size: 1.6rem;
    }

    .chami-about-content {
        font-size: 1rem;
    }
}