.hero-section {
    position: relative;
    height: 200px;
}

.hero-section::before {
    background: linear-gradient(270deg, #FFF 51.44%, rgba(255, 255, 255, 0.00) 100%);
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 70%;
    z-index: 2;
}

.hero-overlay {
    background: linear-gradient(90deg, #012C6C 0%, rgba(1, 44, 108, 0.00) 100%);
    margin-top: -100px;
    z-index: 2;
    position: relative;
    padding: 7px 0;
}

.hero-image {
    display: block;
    height: 100%;
}

.hero-title {
    color: #FFF;
    font-family: 'Montserrat';
    font-size: 65px;
    font-style: normal;
    font-weight: 900;
    line-height: 100%;
    /* 65px */
}

.content {
    padding: 60px 0;
}

.content h2 {
    margin-bottom: 20px;
    font-size: 22px;
}

.content p {
    margin-bottom: 20px;
    color: #333;
    font-family: 'Montserrat';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 143%;
    /* 19.6px */
}
.content ul,.content ol{
       padding-left: 20px;
}
.content li{

        color: #333;
    font-family: 'Montserrat';
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 143%;
}

/* Contact Form */
.contact-section {
    background: var(--white);
    padding: 60px 0 120px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info {
    max-width: 445px;
}

.contact-info h2 {
    font-size: 45px;
    font-weight: 900;
    line-height: 130%;
    margin-bottom: 30px;
    text-align: left;
}

.contact-info h2 .highlight {
    color: var(--orange-primary);
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-list li {
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-phone {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
}

.contact-phone span {
    display: flex;
    gap: 10px;
}

.contact-phone img {
    width: 24px;
    height: 24px;
}

.contact-phone a {
    color: inherit;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-1);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}



@media (max-width: 1000px) {
    .hero-title {
        font-size: 45px;
    }

    .contact-content {
        flex-wrap: wrap;
    }

    .contact-info {
        max-width: 100%;
    }

    .contact-info h2 {
        font-size: 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .content {
        padding: 50px 0 25px 0;
    }

    .contact-section {
        padding: 25px 0;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 35px;
    }

    .hero-overlay {
        margin-top: -70px;
    }

    .hero-section {
        height: 150px;
    }

    .contact-form {
        padding: 30px;
    }

    .contact-list>span,
    .contact-phone {
        font-size: 14px;
    }

    .social-links {
        gap: 30px;
    }

    .steps-list {
        padding: 0;
    }

    .content h2 {
        margin-bottom: 15px;
        font-size: 18px;
    }

    .content p {
        margin-bottom: 10px;
    }

}