.site-header {
    background: transparent;
}

.hero {
    background: url(https://rachmanas.adortatechnologies.com/wp-content/uploads/2025/12/Hero-Section-1.png);
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    color: #fff;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    margin-top: -78px;
}

/* Desktop */
.hero_section {
    display: flex;
    align-items: center;
    min-height: 615px;
    padding: 170px 0 0;
}

.hero-text {
    flex: 1 1 45%;
    max-width: 45%;
    margin-bottom: 112px;
}

.hero_section img {
    flex: 1 1 55%;
    max-width: 55%;
}

.hero-text h1 {
    margin-top: 52px;
    font-family: Inter;
    font-weight: 600;
    font-size: 48px;
    line-height: 64px;
    margin-bottom: 27px;
}

.hero-text p {
    font-family: Inter;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 27px;
}

.hero a {
    padding: 15px 42px;
    background: #00a88f;
    /*background: #008000;*/
    border-radius: 46px;
    font-size: 24px;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
.hero a:hover {
    /*color: #008000;*/
    color: #00a88f;
    background: #fff;
    /*border:1px solid #00a88f;*/
    border:1px solid #008000;
}
@media (max-width: 1024px) {
    .hero_section {
        display: flex;
        padding: 80px 0 0;
        flex-direction: column;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
        margin-top: 50px;
    }

    .hero_section img {
        max-width: 100%;
        margin: auto;
        margin-top: 40px;
        flex: 1 1 100%;
        width: 100%;
        align-self: center;
    }

    .hero-text h1 {
        font-size: 45px;
        line-height: 52px;
    }

    .hero-text p {
        font-size: 18px;
    }
}
@media (max-width: 767px) {
    .hero-text h1 {
        font-size: 30px;
        line-height: 42px;
    }

    .hero-text p {
        font-size: 16px;
        line-height: 24px;
    }

    .hero a {
        font-size: 18px;
        padding: 12px 30px;
    }
    
    .hero_section img {
        max-width: 100%;
    }
}