.service-banner {
    background-position: center;
    background-size: cover;
}

.overlay {
    background-color: rgba(255, 255, 255, 0.719);
    color: black;
    padding-top: 60px;
    padding-bottom: 60px;
}

.dark-mode .overlay {
    background-color: rgba(0, 0, 0, 0.895);
    color: white;
}

.title-main {
    font-size: 55px;
    color: #ff0000;
    text-transform: uppercase;
    text-align: center;
}

.top-description {
    font-size: 28px;
    color: #10053B;
    text-align: center;
}

.image-section img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.form-section {
    background-color: rgba(203, 203, 203, 0.85);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dark-mode .form-section {
    background-color: rgba(0, 0, 0, 0.85);
    color: white;
}

.form-section h4 {
    margin-bottom: 20px;
    color: #333;
}

.dark-mode .form-section h4 {
    color: #ddd;
}

.form-control {
    border-radius: 5px;
}

.btn-primary {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* Adjustments for dark mode inputs */
.dark-mode .form-control {
    background-color: #222;
    color: white;
    border: 1px solid #444;
}

.dark-mode .form-control::placeholder {
    color: #bbb;
}

@media screen and (max-width: 650px) {
    .title-main {
        padding-top: 80px;
        font-size: 50px;
    }

    .top-description {
        font-size: 22px;
    }

    .form-section {
        padding: 15px;
    }
}

@media screen and (max-width: 450px) {
    .overlay {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .title-main {
        padding-top: 60px;
        font-size: 40px;
    }

    .top-description {
        font-size: 18px;
    }

    .form-section {
        padding: 10px;
    }
}

@media screen and (max-width: 350px) {
    .overlay {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .title-main {
        padding-top: 40px;
        font-size: 22px;
    }

    .top-description {
        font-size: 14px;
    }
}