.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 75px 150px;
    background: white;
    color: #0A1F44; /* Dark Blue */
}

.banner-content {
    flex: 1;
    max-width: 350px; /* Limits text width */
}

.banner-content h2 {
    font-size: 39px;
    font-weight: bolder;
    line-height: 1.3;
}

.banner-content .highlight {
    color: #FFD000; /* Yellow */
}

.banner-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding-right: 30px; /* Indents the image */
}

.banner-image img {
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .banner-content {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .banner-image {
        justify-content: center;
        padding-right: 0;
    }

    .banner-image img {
        width: 100%;
        max-width: 400px;
    }
}
.separator {
    width: 100%;
    height: 75px;
    background: #FFD000; /* Yellow */
}

.divider {
    width: 75px;
    height: 5px;
    background: #FFD000; /* Yellow */
    margin: 20px auto; /* Centers the line */
}
.dividers {
    position: relative;
    bottom: 40px;
    width: 75px;
    height: 5px;
    background: #FFD000; /* Yellow */
    margin: 20px auto; /* Centers the line */
}


/* text section */

.welcome-section {
    text-align: center;
    padding: 40px 20px 10px;
    background: #0A1F44;
}

.welcome-section h4 {
    font-size: 15px;
    font-weight: 500; /* Thin text */
    color: white; /* Dark blue */
    margin: 0;
    text-transform: uppercase;
}

.welcome-section h2 {
    font-size: 30px;
    font-weight: 700; /* Bold text */
    color: white;
    margin-top: 10px;
    max-width: 400px;
    margin-left: auto;
    text-transform: uppercase;
    margin-right: auto;
}


/* services home page */
.registration-section {
    text-align: center;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.registration-header h2 {
    margin: 5px 0;
    font-size: 36px;
    color: #0A1F44;
}

.thin-text {
    font-weight: 300;
    text-transform: uppercase;
}

.bold-text {
    font-weight: 700;
    text-transform: uppercase;
}

.sub-text {
    color: grey;
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    position: relative;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 800px;
    width: 100%;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 20px 20px;
    display: flex;
    flex-direction: column;
}

.service-list li {
    display: flex;
    align-items: center;
    font-size: 20px;
    margin: 15px 0;
    color: #0A1F44;
    font-weight: 700;
}

.checkmark {
    width: 26px;
    height: 26px;
    display: inline-block;
    border: 2px solid #FFD000;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
}

.checkmark::before {
    content: "✔";
    font-size: 16px;
    color: #FFD000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

/* Mobile view - single column */
@media (max-width: 768px) {
    .service-container {
        flex-direction: column;
        align-items: center;
    }

    .service-list {
        width: 100%;
        text-align: left;
    }
}

@media (min-width: 768px) {
    .service-list-container {
        flex-direction: row;
        display: flex;
    }


}


.contact-info {
    background-color: white;
    padding: 40px 20px;
    text-align: center;
}

.info-container {
    padding-top: 100px;
    display: flex;
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.info-box {
    flex: 1 1 250px;
    max-width: 250px;
    text-align: center;
}

.info-box img {
    width: 40px;
    height: 40px;
}

.info-box h3 {
    color: #0A1F44;
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px 0;
}

.info-box p {
    font-size: 1em;
    color: black;
}

.info-box a {
    text-decoration: none;
    color: black;
    transition: color 0.3s;
}

.info-box a:hover {
    color: #FFD000;
}

/* Mobile View */
@media (max-width: 768px) {
    .info-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .info-box {
        max-width: 100%;
    }
}
