.quote-large {
    text-align: center;
    padding: 50px 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.quote-large p {
    font-style: normal;
    font-size: 2.1rem;
    font-weight: 600;
}

.quote-small {
    position: relative;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    z-index: 1;
}

.quote-small h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
}

.quote-small p {
    font-style: normal;
    font-size: 1.2rem;
    font-weight: 400;
    font-style: italic;
}

.quote-small::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: #F7F1E6;
    z-index: -1;
}

.split-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.split-section .split-image {
    display: flex;
    justify-content: center;
    align-items: center;     
}

.split-section .split-image img {
    object-fit: cover;
    width: 100%;
    max-width: 500px;
    display: block;
    border-radius: 15px;
}

.split-section .split-text {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.split-text h2 {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.split-text ul {
    margin: 0;
    padding-left: 20px;
    line-height: 1.6;
}

.split-paragraphs {
    display: flex;
    justify-content: center;
    gap: 200px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.split-paragraphs .split-paragraph {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-left: 20px;
    flex: unset;
}

.split-paragraphs .split-paragraph::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #38211A;
}

.split-paragraphs h3 {
    margin: 0 0 20px 0;
    font-weight: 600;
}

.split-paragraphs p {
    margin: 0;
    line-height: 1.6;

}

.split-paragraph ul {
    margin: 0;
    padding-left: 20px;
    line-height: 1.6;
}

.split-paragraphs .text-top {
    margin-bottom: 20px;
}

.little-quote p {
    margin-bottom: 7px;
    text-align: center;
}

.whatsapp p {
    margin: 15px 0 7px 0;
    text-align: center;
    font-weight: 600;
}

.btn-container {
    text-align: center;
    margin: 0 0 50px 0;
}

.btn-container a {
    color: #38211A;
    border: 0.5px solid #38211A;
}

.btn-container p {
    margin: 10px 0;
    font-size: 0.7rem;
    color: #38211A;
}

.private-session-form {
    padding: 30px 150px;
    text-align: center;
}

.private-session-form h1 {
    margin-bottom: 50px;
}

.private-session-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.private-session-form input {
    width: 100%;
    padding: 15px;
    border: 3px solid #38211A;
    background: transparent;
    color: #38211A;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    border-radius: 15px;
    box-sizing: border-box;
}

.private-session-form .btn-rounded {
    width: 100%;
    padding: 15px;
    background-color: #38211A;
    color: #F7F1E6;
    border: 3px solid #38211A;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
}

.private-session-form .btn-rounded:hover {
    background-color: #F7F1E6;
    color: #38211A;
}

.success-message {
    display: none;
    margin-top: 30px;
    color: #38211A;
    line-height: 1.6;
}

@media (max-width: 600px) {

    .split-paragraphs {
        flex-direction: column;
        gap: 20px;
    }

    .split-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 0px 20px 20px 20px;
    }

    .split-section .split-text {
        gap: 30px;
    }

    .btn-container .btn-rounded {
        font-size: 1rem;
        padding: 18px 30px;
    }

    .btn-container {
        margin-bottom: 20px;
    }

    .quote-large {
        padding: 0px 5px 20px 5px;
    }

    .quote-large p {
        font-size: 0.9rem;
    }

    .quote-small {
        padding: 30px 10px;
        z-index: 1;
        margin-bottom: 20px;
    }

    .quote-small h4 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 20px;
        font-style: italic;
    }

    .quote-small p {
        font-style: normal;
        font-size: 0.8rem;
        font-weight: 400;
        font-style: italic;
    }

    .little-quote {
        margin-bottom: 20px;
    }

    .little-quote {
        font-size: 0.8rem;
    }

    .private-session-form {
        padding: 50px 20px;
    }

    .private-session-form h2 {
        margin-bottom: 20px;
    }

    .private-session-form h1 {
        margin-bottom: 30px;
    }
}