.engineering {
    height: auto;
    background-color: var(--dark-bg);
    font-family: "Acumin-Regular", sans-serif;
    padding-bottom: 100px;
}

#engineeringImg {
    object-fit: cover;
    height: 400px;
    width: 100%;
}

.engineering-content {
    padding: 100px 40px;
    text-align: left;
    margin: auto;
    max-width: 1200px;
}

.engineering-header {
    margin-bottom: 50px;
    width: 100%;
    max-width: 1200px;
}

.engineering-header h1 {
    font-size: var(--medium-big-font);
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: left;
    color: var(--heading-text-color);
}

.engineering-header h3 {
    font-family: "Acumin-Regular", sans-serif;
    font-size: var(--medium-font);
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
    color: var(--basic-text-color);
}

.services-content {
    width: 100%;
    max-width: 1000px;
    text-align: left;
    margin-bottom: 50px;
}

.services-content h3 {
    font-family: "Acumin-Bold", sans-serif;
    font-size: var(--medium-font);
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    text-align: left;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.services-list li {
    font-family: "Acumin-Regular", sans-serif;
    font-size: var(--small-font);
    margin-bottom: 20px;
    margin-top: 0;
    position: relative;
    padding-left: 30px;
    line-height: 1.6;
    width: 45%;
}

.services-list li:before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    width: 24px;
    height: 24px;
    background-image: url('../img/favicon/check.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.contact-text {
    width: 100%;
    max-width: 1200px;
    font-family: "Acumin-Regular", sans-serif;
    font-size: var(--medium-font);
    line-height: 1.6;
    margin-top: 20px;
    font-style: italic;
    text-align: left;
}


/* Small Devices (Portrait Tablets and Small Phones, up to 768px) */
@media only screen and (max-width: 481px) {
    .engineering-header > h3, .services-content > h3, .contact-text {
        font-size: var(--very-small-font) !important;
    }

    .services-list > li {
        font-size: var(--very-small-font);
        width: 100%;
        line-height: 1;
        margin-bottom: 50px;
    }
    .question-title {
        margin-bottom: 50px !important;
    }

}

/* Small Devices (Portrait Tablets and Small Phones, up to 768px) */
@media only screen and (min-width: 481px) and (max-width: 768px) {
    .engineering-header > h3, .services-content > h3, .contact-text {
        font-size: var(--very-small-font) !important;
    }

    .services-list > li {
        font-size: var(--very-small-font);
        width: 100%;
        line-height: 1;
        margin-bottom: 50px;
    }

}


/* Medium Devices (Tablets in Landscape, 768px to 1024px) */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .engineering-header > h3, .services-content > h3, .contact-text {
        font-size: var(--small-font) !important;
    }

    .services-list > li {
        font-size: var(--very-small-font);
        width: 40%;
    }

}   


/* Large Devices (Desktops, 1024px to 1200px) */
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
    .engineering-header > h3, .services-content > h3, .contact-text {
        font-size: var(--small-font) !important;
    }

    .services-list > li {
        font-size: var(--very-small-font);
        width: 40%;

    }


}

/* Extra Large Devices (Large Desktops, 1200px to 1600px) */
@media only screen and (min-width: 1201px) and (max-width: 1651px) {
    .engineering-header > h3, .services-content > h3, .contact-text {
        font-size: var(--small-font) !important;
    }

    .services-list > li {
        font-size: var(--very-small-font);
        width: 40%;
    }

}

#engineeringData {
    display: flex !important;
    justify-content: center;
    gap: 1.5rem;
}


.contact-text {
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-text:hover {
    color: var(--geon-primary);
    transform: translateY(-2px);
}

.engineeringSquareContainer {
    max-width: 1200px;
    margin: auto; /* Center the square */
    padding: 0 40px;

}

#engineeringSquare {
    margin-bottom: 2rem; /* Add some space below */
    text-align: center;
}
.engineering .form-section {
    margin-top: 2rem;
}