.about-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}
.about-card {
    background-color: #fff;
    border-radius: 32px;
    max-width: 1200px;
}

.heading {
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 1rem;
    text-align: center;
}

.text {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.35;
    color: #333;
    text-align: center;
}

@media (max-width: 991px) {
    .about-section {
        gap: 2rem;
    }

    .heading {
        font-size: 22px;
    }

    .text {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .about-card {
        border-radius: 16px;
    }
}
