body {
    margin: 0;
    font-family: 'Oswald', sans-serif;
    background-color: #FBFBFD;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.logo {
    margin-bottom: 5px;
}

.logo img {
    max-width: 500px;
    height: auto;
    width: 100%; /* Ensures it scales down */
}

.profile {
    margin-bottom: 30px;
}

.profile img {
    max-width: 200px;
    height: auto;
    border-radius: 50%;
}

.text {
    font-size: 26px;
    font-weight: 500;
    color: #000;
    margin-bottom: 40px;
}

.calendly {
    width: 100%;
    padding: 0 10%; /* Adds margin-like padding on the sides */
    box-sizing: border-box; /* Ensures padding does not exceed width */
}

.calendly iframe {
    width: 100%;
    max-width: 1200px; /* Limits maximum width */
    height: 700px;
    border: 0;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .logo img {
        max-width: 300px; /* Adjust logo size for mobile */
    }

    .calendly {
        padding: 0 5%; /* Reduce padding for mobile */
    }

    .text {
        font-size: 20px; /* Optional: smaller text for better readability */
    }
}
