.hero-container {
    position: relative;
    min-height: 570px;
}

.hero-container .left-section {
    max-width: 50%;
}

.hero-title {
    font-size: 44px;
    font-weight: 500;
    line-height: 55px;
    color: #000;
}

.hero-title-small {
    font-size: 36px;
    font-weight: 500;
    line-height: 120%;
    color: #000;

}

.green-subtitle {
    font-size: 16px;
    letter-spacing: .25em;
    font-weight: 500;
    text-transform: uppercase;
    color: #338B3B;
}

.hero-description {
    margin: 25px 0;
    font-weight: 400;
    line-height: 28px;
    font-size: 18px;
}

.hero-btn-container {
    display: flex;
    align-items: center;
    width: fit-content;
    cursor: pointer;
    color: #000000; /* Black text */
    position: relative;
    text-decoration: none;
    padding-right: 24px;
    border-radius: 54px; /* Makes it a circle */
    z-index: 1;
    transition: .4s ease;
}

.hero-btn-container::before {
    border-radius: 0 54px 54px 0;
    content: "";
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 0;
    background: #59BF62;
    z-index: -1;
    transition: width 0.4s ease;
}


.hero-btn-container > * {
    transition: .4s ease;
}


.btn-text {

    font-size: 18px;
    color: #000000; /* Black text */
    margin-left: 12px; /* Space between text and circle */
    font-weight: 500;
    text-decoration: none;
}

.hero-btn {
    display: inline-block;
    background: #59BF62; /* Green color */
    border-radius: 50%; /* Makes it a circle */
    width: 54px; /* Adjust size as needed */
    height: 54px; /* Adjust size as needed */
    text-align: center;
    line-height: 50px; /* Vertically centers the arrow */
}

.hero-btn-link {
    color: #ffffff; /* White color for the arrow */
    text-decoration: none;
    font-size: 24px; /* Adjust size of the arrow */
}

.arrow {
    display: inline-block;
    line-height: 50px; /* Ensures vertical centering */
}

.green-bar {
    height: 36px;
    background: #59BF62;

}

/* Advantages block */
.why-choose {
    position: relative;

}

.why-choose > * {
    position: relative;
    z-index: 2; /* Ensure content stays above the overlay */
}

.why-choose .col-lg-8 h2{
	max-width: 780px;
}
.why-choose .col-lg-8 p{
	max-width: 546px;
}
.advantages-row .col-lg-4 {
    background: rgba(255, 255, 255, 0.8); /* White with 80% opacity */
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: start;
}

.card-title {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 20px;
}

.padding-block{
    padding: 79px 0 99px;
}
/* Our Available Territories block 59BF6226*/
.our-territories {
    background: #fff; 
	padding-bottom: 60px;
}

.territories-title {
    max-width: 791px;
}

.territories-description-btn {
    margin-top: 72px;
}

.advantages-row {
    margin-top: 27px;
}
.fs-18{
    font-size: 18px;
    line-height: 170%;
}

.mobile-button {
    display: none;
}
.desktop-button {
    display: none;
}
.footnote-bottom{
    margin: 36px 0;
    font-weight: 400;
    font-size: 14px;
    font-style: italic;
    line-height: 150%;

}
@media (min-width: 992px) {
    .desktop-button {
        display: block;
    }
    .advantages-row {
        margin-top: 77px;
        gap: 12px;
        display: flex;
    }
    .hover-underline{
        text-decoration: none;
        transition: .4s ease;

    }

    .hover-underline:hover{
        text-decoration: underline;
        transition: .4s ease;

    }
    .hero-btn-container:hover::before {
        border-radius: 0 54px 54px 0;
        width: 100%;
    }

    .hero-btn-container:hover > * {
        transition: .4s ease;
        color: white;
    }
}
@media (max-width: 992px) {
	.our-territories {
		background: #fff; 
		padding-bottom: 12px;
	}
    .footnote-bottom{
        margin: 32px 0;
        font-size: 12px;

    }
    .card-text{
        font-size: 16px;
    }
    .mobile-button {
        display: block;
    }
    .desktop-button {
        display: none;
    }
    .toggled .mobile-button {
        display: none;
    }
    .desktop-button .button-header{
        margin-left: 0;
        width: 100%;
        max-width: 100%;
    }
    .show .desktop-button,
    .toggled .desktop-button {
        display: block;
    }
    .advantages-row .col-lg-4{
        gap: 12px;
        margin-bottom: 12px;
        padding: 12px;
    }
    .btn-text{
        font-size: 16px;
    }
    .card-title{
        font-size: 16px;
        margin-bottom: 12px;
    }
    .hero-btn-container {
        width: 100%;
        justify-content: center;
    }

    .fs-18,
    .fs-18 > *{
        font-weight: 300;
        font-size: 16px;
        line-height: 170%;
    }
    .padding-block{
        padding: 48px 0;
    }
    .hero-description {
        font-size: 16px;
        line-height: 24px;
    }

    .image-container-mobile-cta {
        text-align: start;
    }

    .image-contact-us-banner {
        width: 100%;
        height: auto;

    }

    .image-container-mobile-cta img {
        width: 200px;
        height: 200px;
    }

    .image-container-mobile-cta .top-left-green-circle {
        transform: translateX(-30%) translateY(-30%);
        width: 200px;
        height: 200px;
    }
    .territories-description-btn{
        margin-top: 12px;
    }
}