.about-banner-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
    /* gap: 3rem; */
}

.about-banner-image-side img {
    width: 100%;
    height: auto;
}

.about-banner-text-side {
    padding: 0 10rem 0 5rem;
    line-height: 1.3;
}

.first-paragraph {
    margin-bottom: 1.5rem;
}

.about-banner-text-side h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0px;
}

.about-banner-text-side h1 span{
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.about-banner-text-side h1 span::after {
    content: '';
    position: absolute;
    left: -0.65em;
    bottom: 0.1em;
    width: 100%;
    height: 0.4em;
    background-color: #d7fef2;
    z-index: -1;
}

.about-banner-text-side h2 {
    font-size: 3.2rem;
    font-weight: normal;
    margin-bottom: 3.5rem;
    margin-top: 1rem;
}

.about-banner-text-side p {
    font-size: 1.8rem;
    margin: 0;
}

.about-banner-text-side p strong {
    font-weight: bold;
}

/* What Sets Us Apart CSS */

.about-sets-apart-section {
    background-image: url('https://storage.googleapis.com/giffycms-puffedup.appspot.com/images/about-us/what-sets-apart-about.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 6rem 0;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.about-sets-apart-section h3 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 8rem;
}

.about-sets-apart-section h3 span {
    position: relative;
    display: inline-block;
}

.about-sets-apart-section h3 span::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0.2em;
    width: 104%;
    height: 0.4em;
    background-color: #affde5;
    z-index: -1;
}

.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 h4 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    margin-top: 4rem;
    font-weight: 800;
}

.sets-apart-grid-card h4 span {
    display: block;
}

.sets-apart-grid-card p {
    font-size: 1.7rem;
    line-height: 1.3;
}

/* Contact Us Section CSS */

.about-contact-section {
    padding: 0rem 0 3rem;
    background-image: url(https://storage.googleapis.com/giffycms-puffedup.appspot.com/images/about-us/cta%20bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-section {
    background-image: url('https://storage.googleapis.com/giffycms-puffedup.appspot.com/images/about-us/cta-background-about.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 35px;
    padding: 8rem 0;
    display: grid;
    place-items: center;
    text-align: center;
}

.contact-section h5 {
    font-size: 3.2rem;
}

.contact-section h5 span {
    font-weight: normal;
}

.contact-section .about-contact-btn {
    margin-top: 2rem;
    padding: 12px 50px;
    border-radius: 50px;
    background-color: #ff5758;
    color: white;
    border: none;
    font-size: 2.3rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-section .about-contact-btn:hover {
    color: #ff5758;
    background-color: white;
}

.desktop-heading {
    display: block;
}

.mobile-heading {
    display: none;
}

@media (max-width: 768px) {
    .about-banner-grid {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }

    .about-banner-text-side {
        padding: 5rem 6rem 5rem 5rem;

    }

    .desktop-heading {
        display: none;
    }

    .mobile-heading {
        display: block;
    }
}

@media (max-width: 480px) {
    .about-banner-text-side {
        padding: 5rem 2rem 5rem 2rem;
    }

    .about-banner-text-side h1 {
        font-size: 3.5rem;
    }
}