/* ABOUT SECTION */
.about-section {
    width: 100%;
    background: #ffffff;
    padding: 90px 45px;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

/* LEFT CARD */
.about-card {
    background: #ffffff;
    border: 1px solid #e1e1e1;
    padding: 48px 46px;
    min-height: 520px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-label {
    width: fit-content;
    margin-bottom: 22px;
    padding: 10px 24px;

    background: #b4070b;
    color: #ffffff;

    border-radius: 0;
    font-size: 13px;
    font-weight: 700;
}

.about-card h2 {
    margin-bottom: 8px;

    color: #0c1c44;
    font-size: 36px;
    line-height: 1.1;
    font-weight: 900;
}

.about-card h3 {
    max-width: 520px;
    margin-bottom: 22px;

    color: #333333;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
}

.about-card p {
    margin-bottom: 14px;

    color: #333333;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 400;
}

.about-card p:last-child {
    margin-bottom: 0;
}

/* RIGHT IMAGE */
.about-image-wrap {
    width: 100%;
    height: 620px;
    overflow: hidden;
    border-radius: 10px;
    background: #0c1c44;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* TABLET */
@media (max-width: 1000px) {
    .about-section {
        padding: 70px 28px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-card {
        min-height: auto;
        padding: 40px 34px;
    }

    .about-image-wrap {
        height: 520px;
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .about-section {
        padding: 55px 18px;
    }

    .about-card {
        padding: 32px 24px;
    }

    .about-card h2 {
        font-size: 31px;
    }

    .about-card h3 {
        font-size: 19px;
    }

    .about-card p {
        font-size: 14px;
    }

    .about-image-wrap {
        height: 380px;
        border-radius: 8px;
    }
}