/* ==================== APPOINTMENT SECTION ==================== */

.appointment-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
    min-height: 500px;
}

/* ==================== LEFT CONTENT ==================== */

.appointment-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: start;
}

.appointment-title {
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    text-align: start;
}

.appointment-description {
    font-size: 1.15rem;
    font-weight: 400;
    color: #FBEFFF;
    line-height: 1.65rem;
    margin: 0;
    text-align: start;
}

.appointment-buttons {
    display: flex;
    gap: 1.25rem;
    margin-top: 1rem;
    width: 100%;
}

.prm-button button {
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    font-family: 'PlusJakartaSans';
    justify-content: center;
    border: 1px solid #B704F6;
    border-radius: 8px;
    cursor: pointer;
    background-color: #B704F6;
    align-items: center;
    color: #F1F1F1;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    gap: 1rem;
}

.sdn-button button {
    width: 100%;
    display: flex;
    padding: 1rem 2rem;
    font-family: 'PlusJakartaSans';
    justify-content: center;
    border-radius: 8px;
    border: 1px solid white;
    cursor: pointer;
    background-color: #5E2C91;
    align-items: center;
    color: #FDF7FF;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    gap: 0.5rem;
}

/* ==================== RIGHT IMAGE ==================== */

.appointment-image {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.appointment-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
}


/* Mobile Large - 576px to 767px */
@media (max-width: 767px) {
    .appointment-title{
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .appointment-description{
        font-size: 0.75rem;
        line-height: 1.125rem;
    }

    .appointment-buttons{
        flex-direction: column;
    }

    .appointment-section{
        flex-direction: column;
    }
}