.background {
    width: 100%;
    /* min-height: 514px; */
    background: linear-gradient(180deg, rgba(210,232,246,1) 15%, rgba(249,244,241,1) 85%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    max-width: 1440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 4.5rem 1rem;
}

.headingGroup {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mainHeading {
    width: 800px;
    font-family: 'Droid Serif', serif;
    font-size: 2.25em;
    letter-spacing: 0.6px;
    line-height: normal;
    max-width: 1152px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    color: #262f40;
}

.strong {
    font-weight: 700;
}

.subheading {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.875em;
    line-height: 34.13px;
    font-weight: 400;
    color: #262f40;
}

.ctaButton {
    background-color: #fec91a;
    display: inline-block;
    width: auto;
    /* height: 2.75rem; */
    line-height: 2.75rem;
    padding: 0 1.375rem;
    vertical-align: middle;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    font-weight: 600;
    border-radius: 0.625rem;
    direction: var(--site-language-direction);
    overflow: hidden;
    text-overflow: ellipsis;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.ctaButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ctaButton:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .mainHeading {
        font-size: 26px;
        /* line-height: 1.4; */
    }
    
    .subheading {
        font-size: 18px;
    }
    
    .ctaButton {
        font-size: 16px;
        padding: 4px 24px;
    }
}

@media (max-width: 480px) {
    .mainHeading {
        font-size: 28px;
    }
    
    .subheading {
        font-size: 16px;
    }
    
    .container {
        padding: 2rem 1rem;
    }
}
@media screen and (max-width:992px) {
    .mainHeading {
        width: 100%;
       
    }
  }