.hero-section {
    background-color: var(--clr-primary-30);
    height: 52.5vh;
    border-radius: 35%;
    margin-bottom: 3%;
    max-width: 100%;
}

.hero-section-wib {
    position: relative; /* Ensure child elements can be positioned absolutely */
    background-image: linear-gradient(to right, var(--clr-light-greem-100), var(--clr-dark-green-100)); /* Background gradient */
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3); /* Bottom shadow */
    height: 50vh;
    overflow: hidden;
}

.svg-container img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    opacity: 0.5;
}

.gorilla img{
    z-index: 2;
    opacity: 1;
    top: 30px;
}


.hero-title {
    position: absolute;
    max-width: 55%;
    left: 5%;
    top: 10%;
    color: white;
    line-height: 1.8;
    letter-spacing: 2px;
    z-index: 2;
}
.highlight {
    color: var(--clr-accent-100);
}

.highlight1 {
    color: var(--clr-accent-100);
    font-weight: lighter;
}


@media (max-width: 675px) {
    .gorilla img{
        display: none; /* Hide gorilla */
    }

}

/* Media query for screen widths 650px and above */
@media (min-width: 675px) {
    .svg-container img {
        left: 15%; /* Move all images 20% left */
    }

    .hero-section-wib {
        border-radius: 0 0 40px 40px;
    }

    .gorilla img {
        left: 20%;
    }
}

@media (min-width: 1000px) {
    .hero-title{
        left: 14%;
    }
}


/* ######################### */
/* ####### part two ######## */
/* ######################### */

.first-two-sections {
    background-color: #e9eff2;
    padding-bottom: 5%;
}

.reload-intro-explanation {
    display: flex;
    flex-direction: row;
    padding: 0 10%;
    gap: 2rem;
}

.reload-intro {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.reload-intro-first {
    width: 60%;
}

.go-back-signup {
    justify-content: space-between;
    background-color: var(--clr-light-greem-100);
    padding: 1% 2%;
    border-radius: 15px;
    color: white;
    width: 40%;
}

.offer-feature-learn-more {
    color: var(--clr-green-100);
    text-decoration: none;
    font-size: 1rem;
    margin-top: auto;
}

.offer-feature-learn-more:hover {
    color: var(--clr-accent-50);
}

.offer-feature-learn-more::after {
    content: '\2192';
    margin-left: 0.5ch;
}

@media (max-width: 800px) {
    .reload-intro-explanation {
        flex-direction: column;
    }
    .go-back-signup {
        order: -1;
        padding: 5%;
    }

    .reload-intro {
        width: 100%;
    }
}


/* ######################### */
/* ####### types of reload offers ######## */
/* ######################### */

.types-of-offers {
    padding: 5% 10%;
    background-color: var(--clr-dark-green-100);
    color: white;
    position: relative;
}

.types-offers-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.highlight-dark {
    color: var(--clr-light-greem-100);
}

.types-offers-explanation {
    display: flex;
    flex-direction: row;
    
}

.reload-offers ul li {
    margin-top: 3%; /* Adds spacing between bullet points */
}

.reload-offers {
    width: 50%;
}

.reload-offers-img img{
    max-width: 150px;
}
.reload-offers-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 600px) {
    .types-offers-explanation {
        flex-direction: column;
    }
    .reload-offers {
        width: 100%;
    }

    .types-offers-column {
        gap: 3rem;
    }

    .reload-order {
        order: 2;
    }
}


/* ######################### */
/* ####### try lay betting button ######## */
/* ######################### */

.lay-betting-btn-container {
    padding: 4%;
    background-color: #e9eff2;;
}


.lay-betting-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1.5%;
    /* margin: 5%; */
    background-color: var(--clr-light-greem-100);
    border-radius: 20px;
    justify-content: space-between;
    color: white;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3), /* Bottom shadow */
                5px -5px 5px rgba(0, 0, 0, 0.3);
}


.get-started-btn {
    border: 1px solid white;
}


.try-lay-btns {
    display: flex;
    flex: row;
    gap: 0.75rem;
    margin-right: 0;
}

@media (max-width: 800px) {
    .lay-betting-btn{
        flex-direction: column;
        text-align: center;
        padding: 5%;
    }
}

/* ######################### */
/* ####### types of reload offers ######## */
/* ######################### */

.reload-summary {
    padding: 5% 10%;
    background-image: linear-gradient(to bottom, var(--clr-dark-green-100), var(--clr-light-greem-100)); /* Background gradient */
    position: relative;
    color: white;
}

.reload-strategy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.reload-summary-heading {
    padding-bottom: 7%;
    position: relative;
    z-index: 1;
}


.reload-strategy-explanation {
    display: flex;
    flex-direction: row;
    
}

.reload-strategy-offers ul li {
    margin-top: 3%; /* Adds spacing between bullet points */
}

.reload-strategy-offers {
    width: 50%;
}

.reload-strategy-offers img{
    max-width: 70%;
}
.reload-strategy-offers-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 750px) {
    .reload-strategy-explanation {
        flex-direction: column;
    }
    .reload-strategy-offers {
        width: 100%;
    }

    .reload-strategy {
        gap: 3rem;
    }
}

@media (max-width: 1100px) and (min-width: 750px) {
    .reload-strategy-offers img{
        max-width: 95%;
    }
}

.reload-summary-finale1 {
    padding: 2.5% 15%;
}
.reload-summary-finale {
    padding: 5%;
    border: 1px solid var(--clr-accent-100);
    border-radius: 30px;
    text-align: center;
}


/* ######################### */
/* ####### Expert button ######## */
/* ######################### */

.expert-button-container {
    padding: 3% 0;
}


.expert-button {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between items */
    padding: 5%;
    margin: 0 5%;
    border-radius: 20px;
    background-color: var(--clr-dark-green-100);
    color: white;
    box-shadow: inset 0 0 0 1px #60ba8d;
}

.background-glowing {
    position: absolute;
    width: 100%;
    height: auto;
    opacity: 0.5;
    z-index: 1;
    left: 20%;
    top: 30%;
}

.expert-button-flex2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Space between items */
    margin-inline: auto;
    z-index: 2;
}

.get-started-btn2 img{
    width: 120px;
    height: auto;
    color: var(--clr-green-100);
}

.get-started-btn-gamble {
    width: 120px;
}


@media (min-width: 450px) {
    .expert-button {
        flex-direction: row;
        align-items: center;
        gap: 5%;
        padding: 0.5% 2%;
    }
    
}

.last-container {
    background-color: #e9eff2;
}


/* ######################### */
/* ####### Expert button ######## */
/* ######################### */

.glowing-background-2 {
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0.5;
    width: 50%;
    filter: brightness(1.25);
}

.glowing-background-2 img{
    width: 100%;
    transform: scaleX(-1);
    z-index: -1;
}

.glowing-background-1 {
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.5;
    width: 50%;
    filter: brightness(1.25);
}

.glowing-background-1 img{
    width: 100%;
    z-index: -1;
}


/* ####################################*/
/* ########## FAQs ############# */
/* ##########      ############# */
/* ################################### */

.faq-container-main {
    background-color: var(--clr-primary-20);
}

.faq-container {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 5% 0;
    padding-top: 2%;
}
.faq-item {
    max-width: 70%;
}

.heading-small {
    font-weight: var(--fw-light);
    padding-top: 5%;
    font-size: 2.5rem;
}

@media (max-width: 500px) {
    .faq-item {
        max-width: 90%;
    }

}
