body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #FCDCC0;
}

* {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

html {
    font-size: 16px;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.15rem 0;
}

.logo img {
    max-width: 11.125rem;
    height: auto;
}

.main-container {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
}

.left-section {
    width: 55%;
}

.left-section img {
    width: 100%;
    height: auto;
}

.right-section {
    text-align: right;
    margin-right: 1rem;
}

.right-section h1 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4E2E1E;
    font-family: 'Playfair Display', serif;
    width: 60%;
}

.right-section .service-title {
    font-size: 1.20rem;
    font-weight: 800;
    color: #95120A;
    font-family: 'Inter', sans-serif;
    margin-top: 2.6rem;
    margin-bottom: 1.6rem;
    text-align: right;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    margin-left: -3.8rem;
    text-align: right;
    align-items: end;
}

.service-item {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}
    
.service-item h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #4E2E1E;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 4px 4px rgba(78, 46, 30, 0.25);
}

.service-item img {
    width: 3.5rem;
    height: 3.5rem;
}

.bottom-section {
    margin-top: 1rem;
    padding: 0 16px;
}

.bottom-section-text {
    font-size: 1rem;
    font-weight: 200;
    color: #4E2E1E;
    font-style: italic;
    font-family: 'Inter', sans-serif;
    text-align: left;
}

.bottom-section-text-author {
    font-size: 1rem;
    font-weight: 200;
    color: #4E2E1E;
    font-style: italic;
    font-family: 'Inter', sans-serif;
    text-align: right;
}

.bottom-section-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.65rem;
    gap: 2rem;
}

.bottom-section-button-directions {
    border: 3px solid #95120A;
    color: #95120A;
    font-size: 1.20rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    width: 100%;
    height: 4rem;
    background-color: transparent;
}

.bottom-section-button-book-now {
    background-color: #95120A;
    color: #FCDCC0;
    font-size: 1.20rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    border: none;
    width: 90%;
    height: 4rem;
}

@media (min-width: 320px) {
    html {
        font-size: 13.5px;
    }
    .left-section {
        width: 100%;
    }
    .hero-content {
        display: flex;
        justify-content: flex-end;
    }
}

@media (min-width: 375px) {
    html {
        font-size: 15px;
    }
    .left-section {
        width: 51.5%;
    }
    .hero-content {
        display: flex;
        justify-content: flex-end;
    }
}


@media (min-width: 425px) {
    html {
        font-size: 15px;
    }
    .hero-content {
        display: flex;
        justify-content: flex-end;
    }
    .left-section {
        width: 65%;
    }
    .hero-content {
        display: flex;
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {
    .bottom-section-buttons {
        position: absolute;
        bottom: 10px;
        width: 92.5%;
    }
}

@media (min-width: 768px) and (max-width: 2160px) {
    html {
        font-size: 16px;
    }
    .hero-content {
        display: flex;
        justify-content: center;
    }
    .left-section {
        width: 30%;
    }
    .right-section {
        width: 70%;
    }
    .right-section .service-title {
        font-size: 1.6rem;
        font-weight: 800;
        color: #95120A;
        font-family: 'Inter', sans-serif;
        margin-top: 2.6rem;
        margin-bottom: 1.6rem;
        text-align: center;
    }
    .service-items {
        flex-direction: row;
        align-items: center;
        margin-left: 0rem;
        gap: 2rem;
        justify-content: center;
    }

    .right-section {
        text-align: center;
        margin-right: 0;
        justify-content: center;
        align-items: space-between;
    }

    .service-container {
        position: relative;
        top: 20%;
    }
}