/* Booking Page Styles */

.book-call-section h1{
    margin-top: 4vh;
}
.book-call-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: auto;
    padding: auto;
}
.book-call-button {
    background: var(--yellow);
    color: #333;
    padding: 8px 14px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: block;
    margin-bottom: 20px;
}

.book-call-button:hover {
    background: var(--orange);
}

.book-call-section p {
    margin-top: 0;
    margin-bottom: 25px;
    padding: 0;

}
/* Calendly styles */
.cal-container {
    margin: 40px auto;
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.cal-container iframe {
    width: 100%;
    height: 800px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}