.about-section {
    padding: 30px 20px 30px 20px;
    background-color: #f9fafb;
    text-align: center;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}


.about-header {
    max-width: 960px;
    margin: 0 auto 60px;
}

.about-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #ff6600;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.about-header .about-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 22px;
    line-height: 1.35;
}

.about-header .about-desc {
    font-size: 16px;
    line-height: 1.9;
    color: #4b5563;
    max-width: 760px;
    margin: 0 auto;
    text-align: left;
    margin-bottom: 1.5em;
}

#about {
    padding: 50px 20px;
}

#about h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #007acc;
}

#about p {
    max-width: 800px;
    margin: auto;
    text-align: justify;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    width: 100%;

    margin: 0 auto;
    overflow: hidden;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.12);
}

.about-image {
    width: 100%;
    height: 520px;
    background-color: #e5e7eb;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.about-card:hover .about-image img {
    transform: scale(1.08);
}

.about-body {
    padding: 46px 60px 54px;
    text-align: center;
}

.about-body .about-title {
    font-size: 26px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.about-body .about-desc {
    font-size: 16px;
    line-height: 1.9;
    color: #4b5563;
    max-width: 820px;
    margin: 0 auto;
    text-align: left;
}

@media (max-width: 576px) {
    .about-image {
        height: 200px;
    }

    .about-header .about-title {
        font-size: 24px;
    }

    .about-header .about-desc {
        font-size: 15px;
        line-height: 1.8;
    }

    .about-body {
        padding: 24px 20px 32px;
    }

    .about-body .about-title {
        font-size: 20px;
    }

    .about-body .about-desc {
        font-size: 14.5px;
    }

    .about-card {
        flex: 1 1 100%;
    }
}