/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f9f9f9;
}

/* Header */
header {
    background-color: #ff0000;
    color: white;
    padding: 20px;
    text-align: center;
}

/* Main content area */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px;
    padding: 20px;
}

/* Calendly widget */
#calendly {
    width: 100%;
    max-width: 800px; /* Limit maximum width */
    height: 700px; /* Set a fixed height to avoid scrolling */
    margin: 0 auto;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #ff0000;
    color: white;
    text-align: center;
    padding: 10px;
}