/* Schedule Appointment Page Specific Styles */

/* Increase max width for the entire page */
.waitlist-container {
    max-width: 1400px;
}

.waitlist-content-wrapper {
    max-width: 1200px;
}

/* Override the benefits grid to fit 4 cards in a row on wide screens */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Ensure 4 cards fit on screens wider than 1200px */
@media screen and (min-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Adjust for tablets */
@media screen and (max-width: 1199px) and (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile: single column */
@media screen and (max-width: 767px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Make the schedule appointment button much larger */
.cta-button {
    font-size: 1.5rem !important;
    padding: 1.5rem 3rem !important;
    font-weight: 700 !important;
}

/* Mobile responsive for the larger button */
@media screen and (max-width: 768px) {
    .cta-button {
        font-size: 1.3rem !important;
        padding: 1.25rem 2rem !important;
    }
}