.hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero h2 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.hero .button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.hero .button:hover {
    background-color: darken(#007bff, 10%);
}

.section__light {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    height: 300px;
    margin-bottom: 30px;
}

.section__light .section-content {
    width: 30%;
    text-align: justify;
    margin-top: 3%;
    background-color: #fff;
    border-radius: 20px;
}

.section__light .section-content h3 {
    color: #012953;
    font-size: 50px;
}

.section__light .section-content p {
    margin-top: 30px;
}

.section__light .section-img {
    width: 30%;
    margin-top: 30px;
}

.section__light .section-img img {
    width: 100%;
    height: 300px;
    border-radius: 20px;
}

.section__services {
    margin-top: 100px;
    height: auto;
    background-color: #f6f6f6;
    padding: 40px 20px;
}

.section__services .services__content h3 {
    text-align: center;
    color: #012953;
    font-size: 50px;
    line-height: 100px;
    margin-bottom: 30px;
}

.section__services .services {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 20px;
}

.section__services .service {
    width: 30%;
    min-width: 280px;
    height: auto;
}

.section__services .service h4 {
    font-size: 35px;
    color: #012953;
    margin-bottom: 20px;
}

.section__services .service ul {
    list-style: none;
    padding-left: 35px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section__services .cta {
    width: 60%;
    margin: 40px auto 0;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    border: 2px solid #000;
    border-radius: 20px;
    background-color: #012953;
}

.section__services .cta h4 {
    font-size: 40px;
    color: #fff;
}

.section__services .cta a {
    background-color: #0368d4;
    padding: 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
}

.section__contact {
    margin-top: 50px;
    width: 100%;
    height: 500px;
}

.section__contact h3 {
    text-align: center;
    font-size: 35px;
    color: #012953;
}

.contact {
    margin-top: 40px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
}

.section_form {
    height: 400px;
}

.section_form .form {
    background-color: #efefef;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.section_form .form h3 {
    margin-bottom: 30px;
}

.section_form .form input[type="text"],
.section_form .form input[type="email"],
.section_form .form textarea {
    width: 94%;
    padding: 12px;
    margin-left: 20px;
    margin-bottom: 20px;
    border: 1px solid black;
    border-radius: 4px;
    font-family: sans-serif;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s ease;
}

.section_form .form button {
    width: 95%;
    padding: 12px;
    margin-left: 20px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: none;
    background-color: #0368d4;
    color: #fff;
}

.contact__info {
    width: 25%;
    height: 345px;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0px 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.contact__info h3 {
    margin-bottom: 30px;
}

.contact__info ul {
    list-style: none;
    padding: 0;
}

.contact__info ul li {
    color: #012953;
    margin-bottom: 30px;
    margin-left: 20px;
}


@media screen and (max-width: 768px) {
    .hero {
        height: 300px;
        padding: 20px;
    }

    .hero h2 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .section__light {
        flex-direction: column;
        height: auto;
        align-items: center;
    }

    .section__light .section-content,
    .section__light .section-img {
        width: 90%;
        margin-top: 20px;
    }

    .section__light .section-img img {
        height: auto;
    }

    .section__services .services {
        flex-direction: column;
        align-items: center;
    }

    .section__services .service {
        width: 90%;
    }

    .section__services .cta {
        width: 90%;
        padding: 20px;
    }

    .section__services .cta h4 {
        font-size: 28px;
    }

    .section__contact {
        height: auto;
        padding: 20px 10px;
    }

    .contact {
        flex-direction: column;
        align-items: center;
    }

    .section_form,
    .contact__info {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }

    .contact__info {
        text-align: center;
    }
}
