* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: tahoma;
    background: white;
}


/* ======================= */


/* ========================= */

.about-page {
    width: 90%;
    max-width: 1400px;
    margin: 80px auto;
}


.page-title {
    text-align: center;
    color: #1c4eb4;
    font-size: 42px;
    margin-bottom: 70px;
    font-family: 'B TITR';
}



/* ========================= */

.about-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-bottom: 90px;
}



/* ========================= */

.about-text {
    width: 60%;
}


.about-text h2 {
    color: #1c4eb4;
    margin-bottom: 20px;
    font-size: 30px;
    font-family: 'B TITR', 'B ROYA', tahoma;
}


.about-text p {
    font-size: 18px;
    line-height: 2.2;
    text-align: justify;
    color: #444;
    font-family: 'IRANSansWeb', 'B ROYA', tahoma;
}



/* ========================= */

.about-logo {
    width: 30%;
    display: flex;
    justify-content: center;
}


.about-logo img {
    width: 85%;
    max-width: 420px;
}



/* ========================= */

.about-card {

    width: 40%;
    display: block;
    text-decoration: none;
    background: white;
    border: 1px solid #d7e3fb;
    border-radius: 16px;
    overflow: hidden;
    transition: .3s;
}


.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(28, 78, 180, .15);
}


.about-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}


.about-card h3 {
    text-align: center;
    padding: 18px;
    color: #23478f;
    font-family: 'IRANSansWeb', 'B ROYA', tahoma;
}


/* ===================================
        Tablet (3 cards per row)
=================================== */

@media (max-width: 900px) {

    .page-title {
        font-size: 34px;
    }

    .about-row {
        margin-bottom: 40px;
        flex-direction: column;
        gap: 35px;
    }

    .about-text {
        margin-bottom: 0;
        width: 100%;
        order: 1;
    }

    .about-logo {
        width: 80%;
        order: 2;
    }

    .about-card {
        width: 100%;
        max-width: 420px;
        order: 2;
    }

    .about-text h2 {
        margin-top: 0;
        text-align: center;
    }

    .about-text p {
        font-size: 17px;
    }

}


.event-article {
    width: 70%;
    max-width: 1100px;
    margin: 60px auto;
    margin-top: 0;
}

.event-article h2 {
    color: #1c4eb4;
    margin: 35px 0 20px;
    font-family: 'B TITR', tahoma;
    font-size: 31px;
}

.event-article h3 {
    color: #143d8f;
    margin: 25px 0 10px;
    font-family: 'B TITR';
    font-size: 24px;
}

.event-article p {
    font-size: 20px;
    line-height: 2.2;
    text-align: justify;
    color: #444;
    font-family: 'IRANSansWeb', 'B NAZANIN', tahoma;
}

.event-article img {
    width: 100%;
    margin: 35px 0;
    margin-bottom: 0;
    border-radius: 10px;
}


/* ==================== */

.current-events {
    width: 90%;
    max-width: 1300px;
    margin: 100px auto;
}

.current-events h2 {
    text-align: center;
    color: #1c4eb4;
    margin-bottom: 45px;
    font-family: 'IRANSansWeb', 'B NAZANIN';
}

.event-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.event-cards a {
    text-decoration: none;
    color: #1c4eb4;
}

.event-card {
    border: 1px solid #d7e3fb;
    border-radius: 14px;
    overflow: hidden;
    transition: .3s;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .12);
}

.event-card img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.event-card h3 {
    padding: 18px;
    text-align: center;
    font-family: 'IRANSansWeb', 'B NAZANIN';
}

/* =======================
        Intro Video
======================= */

.video-section {

    width: 100%;

    display: flex;

    justify-content: center;

    margin: 70px 0;

}

.intro-video {

    width: 100%;

    border-radius: 20px;

    display: block;

    object-fit: cover;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);

}

@media (max-width: 1600px) {
    .page-title img {
        width: 83%;
        max-width: 1100px;
        margin: 35px 0;
        border-radius: 10px;
    }

    .event-article {
        width: 78%;
        max-width: 1100px;
        margin: 60px auto;
        margin-top: 0;
    }
}

@media (max-width: 900px) {


    .event-article {
        width: 95%;
        max-width: 1100px;
        margin: 60px auto;
        margin-top: 0;
    }

    .event-article h2 {
        color: #1c4eb4;
        margin: 35px 0 20px;
        font-family: 'B TITR';
        font-size: 23px;
    }

    .event-article h3 {
        color: #143d8f;
        margin: 25px 0 10px;
        font-family: 'B TITR';
        font-size: 18px;
    }

    .event-article p {
        font-size: 14px;
        line-height: 2.2;
        text-align: justify;
        color: #444;
        font-family: 'IRANSansWeb', tahoma;
    }

    .event-article img {
        width: 100%;
        margin: 35px 0;
        margin-bottom: 0;
        border-radius: 10px;
    }

    .event-cards {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 35px;
    }

    .intro-video {

        width: 100%;

        border-radius: 16px;

    }
}