.about-banner-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: center;
    /* gap: 3rem; */
}

.about-banner-image-side img {
    width: 100%;
    height: auto;
}

.about-banner-text-side {
    padding: 0 0rem 0 4rem;
    line-height: 1.3;
}

.first-paragraph {
    margin-bottom: 1.5rem;
}

.about-banner-text-side h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #2b2b2b;
    margin-bottom: 0px;
}

.about-banner-text-side h1 span {
    position: relative;
    display: inline-block;
}

.about-banner-text-side h1 span::after {
    content: '';
    position: absolute;
    left: -0.3em;
    bottom: 0.12em;
    width: 140%;
    height: 0.8em;
    background-color: #d7fef2;
    z-index: -1;
}

.about-banner-text-side h2 {
    font-size: 4rem;
    font-weight: 700;
    color: #000000d1;
    margin-bottom: 3.5rem;
    margin-top: 1rem;
}

.about-banner-text-side p {
    font-size: 1.89rem;
    margin: 0;
}

/* Icon section CSS */

.about-sets-apart-section {
    background-color: #dffef5;
    padding: 8rem 0;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.sets-apart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 0 auto;
}

.sets-apart-grid-card {
    background: none;
    text-align: center;
    padding: 10px 20px;
}

.sets-apart-grid-card-icon-circle {
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sets-apart-grid-card-icon-circle img {
    width: 50%;
}

/* Bounce animation keyframes */
@keyframes bounce-on-hover {

    0%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(5px);
    }

    70% {
        transform: translateY(-3px);
    }
}

/* Trigger image bounce when card is hovered */
.sets-apart-grid-card:hover .sets-apart-grid-card-icon-circle img {
    animation: bounce-on-hover 0.6s ease;
}

.sets-apart-grid-card h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
    margin-top: 4rem;
    font-weight: 800;
}

.sets-apart-grid-card h3 span {
    display: block;
}

.sets-apart-grid-card p {
    font-size: 1.89rem;
    line-height: 1.3;
}

/* PDF Section CSS */

.pdf-section {
    text-align: center;
    padding: 8rem 0;
}

.pdf-section-title {
    font-size: 4rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 5rem;
}

.pdf-section-title::after {
    content: '';
    position: absolute;
    bottom: 0.18em;
    left: 4.5em;
    transform: translateX(-50%);
    width: 100%;
    height: .75em;
    background-color: #d7fef2;
    z-index: -1;
}

.pdf-grid-container {
    display: grid;
    gap: 3.5rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.pdf-card {
    background-color: #fff;
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.pdf-card:hover {
    transform: translateY(-5px);
}

.pdf-card-title {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pdf-view-btn {
    background-color: #ff5758;
    color: #fff;
    border: none;
    padding: 10px 40px;
    font-size: 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pdf-view-btn:hover {
    color: #e14b4f;
    background-color: #fff;
    border: 1px solid #ff5758;
}

@media (max-width: 768px) {
    .about-banner-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .about-banner-text-side {
        padding: 5rem 6rem 5rem 5rem;

    }

}

@media (max-width: 480px) {
    .pdf-section-title::after {
        width: 75%;
    }
}