#service-container {
    width: min(65em, 95%);
    margin: 2rem auto;
    padding: 1rem;
    background-color: var(--off-white);
    border: var(--border-gray);

    @media (max-width: 56em) {
        height: 100%;
        width: 100%;
        margin: 0;
        padding: 1rem 0.5rem;
        border-radius: 0;
    }

    section {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
        padding: 1rem;
        background-color: white;
        border: var(--border-gray);

        h2 {
            font-size: var(--font-size-heading);
        }

        h3 {
            font-size: var(--font-size-regular);
        }
    }

    .content-container {
        display: flex;
        flex-direction: column;
        height: 100%;
        padding-top: 1rem;
        margin-top: 0.5rem;
        border-top: var(--off-white) 2px solid;
    }

    .icon-container {
        display: flex;
        flex-direction: row;
        justify-content: left;
        gap: 0.25rem;
        margin: 0.5rem 0;

        .icon-round {
            height: 3rem;
            width: 3rem;
            padding: 0.5rem;
            border-radius: 50%;
            border: var(--off-white) 2px solid;
        }
    }

    .price {
        display: flex;
        flex-direction: row;
        gap: 0.25rem;
        align-items: baseline;
        margin-left: auto;

        span:first-of-type {
            font-size: var(--font-size-small);
            font-family: var(--text-extra-bold), serif;
            color: var(--text-primary);
        }

        span:last-of-type {
            font-size: var(--font-size-price);
            font-family: var(--text-bold), serif;
            line-height: normal;
            color: var(--primary);
        }
    }

    .booking-container {
        background: var(--off-white);
        padding: 0.25rem 1rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;

        .btn-cta {
            margin-top: 0;
            margin-bottom: 0;
            margin-right: auto;
            padding: 0.5rem 1rem;
        }

        .price {
            background: var(--off-white);
            padding: 0;
        }
    }

    .dropdown-inner .pill-title-container h3 {
        right: 0.5rem;
    }

    /* OVERVIEW */

    #overview {
        display: grid;
        grid-template-areas: "stack";
        padding: 0;
        border-radius: var(--radius-1);
        border: none;

        h1, p {
            color: white;
        }

        img {
            grid-area: stack;
            object-fit: cover;
            width: 100%;
            height: 100%;
            transform-origin: center;
            border-radius: var(--radius-1);
            border: var(--border-gray);
        }

        .btn-cta {
            grid-area: stack;
            z-index: 4;
            margin-top: auto;
            display: inline-block;
            max-width: max-content;
        }
    }

    .overview-text {
        grid-area: stack;
        z-index: 3;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;

        > div {
            display: flex;
            flex-direction: column;
        }
    }

    .overlay-filter {
        grid-area: stack;
        z-index: 2;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
        border-radius: var(--radius-1);
    }

    /* WHY CHOOSE US */

    #why-choose-us {
        display: flex;
        flex-direction: column;
        text-align: center;

        h2 {
            text-align: left;
        }
    }

    .reasons-grid {
        width: 100%;
        height: 100%;
        display: grid;
        gap: 1rem 0.5rem;
        align-items: start;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .reason {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.25rem;
        min-width: 100px;

        img {
            width: 64px;
            height: auto;
            background-color: var(--off-white);
            border-radius: 50%;
            padding: 0.5rem;
        }

        p {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            align-items: center;
            font-size: var(--font-size-small);
            color: var(--text-primary);
            font-weight: bold;
        }

        .separation-line {
            width: 100%;
            max-width: 120px;
            border-top: var(--off-white) 2px solid;
        }
    }

    /* DROPDOWN */

    .dropdown-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .dropdown-btn {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0.75rem 1rem;
        border: none;
        background-color: var(--off-white);
        transition: var(--button-transition);
        scroll-margin-top: 5rem;

        @media (max-width: 56em) {
            scroll-margin-top: 3rem;
        }

        &:hover {
            background-color: var(--light-gray);
            transform: scale(1.01);
        }

        &.rotate img.rotate {
            rotate: 180deg;
        }

        img {
            height: 32px;
            width: auto;
            transition: 200ms ease;
        }

        span:first-of-type {
            color: var(--text-primary);
            font-size: var(--font-size-regular);
            font-family: var(--heading-bold), serif;
        }
    }

    .dropdown-container {
        display: grid;
        grid-template-rows: 0fr;
        transition: 200ms ease-out;

        &.show {
            grid-template-rows: 1fr;
            margin-bottom: 1rem;
        }

        .dropdown-inner {
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        h3 {
            color: var(--text-primary);
        }
    }
}