/* -- Section 1 - Banner -- */
section.banner {
    width: 100%;
    background-size: cover;
    background-position: 0 38%;
    background-repeat: no-repeat;
}
section.banner div.background-container {
    padding: 60px 0 100px;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

section.banner h1 {
    width: 100%;
    overflow-wrap: break-word;
    font-size: 55.43px;
    font-family: "Jost", sans-serif;
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 0.9em;
}

/* -- Section 2 - About -- */
section.about {
    padding: 160px 15vw 0;
}

section.about div.about-container {
    margin-top: 26px;
    display: flex;
    gap: 8vw;
}

section.about div.about-container p {
    color: var(--text-color-light);
    font-family: "Kumbh Sans", sans-serif;
    line-height: 1.8em;
}

section.about h1.standout-statement-title {
    text-align: center;
    margin: 60px 0;
}
section.about div.standout-statement-container {
    display: flex;
    justify-content: center;
    gap: 8vw;
}

section.about div.standout-statement-container ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2em;
}
section.about div.standout-statement-container ul li {
    padding-left: 30px; /* Adds space for the custom image/marker */
    background-image: url("../images/check.png"); /* Specifies the image */
    background-repeat: no-repeat; /* Ensures the image appears only once */
    background-position: left top; /* Positions the image to the left and vertically centered */
    background-size: 20px; /* Adjust this value to set the desired image size */
}

/* -- Section 3 - Services */
section.services {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 80px 15vw
}
section.services div.service-card {
    display: flex;
    width: 100%;
    gap: 40px;
    align-items: center;
}
section.services div.service-card div.card-content {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
section.services div.service-card div.image-container {
    flex: 0 0 50%;
}
section.services div.service-card div.image-container img {
    display: block;
    width: 100% !important;
    aspect-ratio: 4/3 !important;
    object-fit: cover !important;
    height: initial;
}

/* -- Responsive CSS -- */
@media screen and (max-width: 1210px) {
    /* -- Section 1 - Banner -- */


    /* -- Section 2 - About -- */
    section.about {
        padding: 160px 8vw 0;
    }
    section.about div.about-container {
        display: flex;
        flex-direction: column;
    }
    section.about div.standout-statement-container {
        flex-direction: column;
    }

    /* Section 3 - Services */
    section.services {
        padding: 80px 8vw;
    }
    section.services div.service-card {
        flex-direction: column-reverse;
        gap: 10px;
    }
    section.services div.service-card div.card-content {
        gap: 8px;
    }
}