:root {
    --primary-bg: #fffdf4;
    --text-color: #302e3d;
    --accent-color: #f4bc13;
    --secondary-bg: #E8E8F0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nova Round', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
}

body {
    background: var(--primary-bg);
    color: var(--text-color);
    line-height: 1.6;
}

.booking-wrapper {
    min-height: 100vh;
    height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
}

header {
    width: 100%;
    padding: 15px 20px;
    text-align: center;
    background: var(--primary-bg);
    flex-shrink: 0;
}

.logo {
    max-width: 80px;
    height: auto;
}

.booking-hero {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    background: var(--primary-bg);
    width: 100%;
    min-height: 0;
}

.booking-content {
    width: 100%;
    max-width: 1000px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    min-height: 0;
}

.booking-content h1 {
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--text-color);
    flex-shrink: 0;
}

.booking-content p {
    font-size: 1rem;
    max-width: 700px;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.calendly-inline-widget {
    width: 100% !important;
    max-width: 100%;
    flex: 1;
    min-height: 0 !important;
    height: 100% !important;
    border: none !important;
    box-shadow: none !important;
}

footer {
    flex-shrink: 0;
    margin-top: 0;
}

a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:focus {
    outline: 2px solid var(--text-color);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    header {
        padding: 12px 15px;
    }

    .logo {
        max-width: 70px;
    }

    .booking-hero {
        padding: 15px;
    }

    .booking-content h1 {
        font-size: 1.6rem;
        margin-bottom: 6px;
    }

    .booking-content p {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px 12px;
    }

    .booking-content h1 {
        font-size: 1.4rem;
    }

    .booking-content p {
        font-size: 0.85rem;
        padding: 0 5px;
    }

    .booking-hero {
        padding: 12px;
    }
}

@media (min-width: 769px) {
    header {
        padding: 18px 20px;
    }

    .logo {
        max-width: 90px;
    }

    .booking-content h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .booking-content p {
        font-size: 1.15rem;
        margin-bottom: 18px;
    }

    .booking-hero {
        padding: 25px;
    }
}

@media (min-width: 1024px) {
    .booking-content h1 {
        font-size: 2.8rem;
    }

    .booking-content p {
        font-size: 1.2rem;
    }

    .booking-hero {
        padding: 30px;
    }
}