    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    :root {
        --color-base: #E9F4FF;
        --color-navy: #141b3d;
        --color-accent: #026CFF;
        --color-border: #ccc;
        --color-body: #333
    }

    img {
        max-width: 100%;
        display: block;
        height: auto;
    }


    .inter {
        font-family: "Inter", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
    }

    body {
        font-family: "Inter", sans-serif;
        font-optical-sizing: auto;
        font-weight: 400;
        font-style: normal;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        background: url(../images/bg-head-page.svg) no-repeat center/cover;
        color: var(--color-body);
    }

    .card {
        background: #fff;
        border: 1px solid var(--color-border);
        border-radius: 12px;
        max-width: 800px;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    }


    @media screen and (min-width: 600px) {
        body {
            padding: 2rem;
        }

        .card {
            padding: 3rem;
        }
    }

    .logo {
        margin-bottom: 2rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        justify-content: center;
    }

    .logo img {
        max-width: 250px;
    }

    h1 {
        font-size: 2rem;
        font-weight: 600;
        color: var(--color-navy);
        line-height: 1.15;
        margin-bottom: 1rem;
    }

    @media screen and (min-width: 600px) {
        h1 {
            font-size: 3rem;
        }
    }

    .divider {
        height: 1px;
        background: #2d3148;
        margin: 1.5rem 0;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.75;
        margin-bottom: 1.25rem;
    }



    .schedule {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }


    .schedule-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--color-navy);
        margin-bottom: 0.1rem;

    }

    @media screen and (min-width: 600px) {
        .schedule {
            grid-template-columns: repeat(2, minmax(150px, 1fr));
        }

        .schedule-title {
            grid-column: span 2;
        }
    }

    .schedule-row {
        display: flex;
        flex-direction: column;
        align-items: baseline;
        gap: 0.75rem;
        padding: 0.45rem 0;

        background: var(--color-base);
        padding: 1.5rem;
        border-radius: 8px;
    }


    .schedule-label {
        color: #64748b;
        min-width: 130px;
        flex-shrink: 0;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        font-size: 0.8rem;
    }

    .schedule-value {
        font-weight: 600;
        font-size: 1.1rem;
    }

    .notice {
        border: 1px solid var(--color-border);
        border-radius: 0 6px 6px 0;
        padding: 1.5rem;
        margin: 1.5rem 0;
        border-radius: 8px;
    }

    .notice p {
        margin: 0;
        font-size: 0.9rem;
    }

    .signature {
        margin-top: 1.75rem;
        padding-top: 1.5rem;
        border-top: 1px solid #2d3148;
    }

    .signature .name {
        font-size: 1rem;
        font-weight: 600;
        color: var(--color-navy);
    }

    .signature .role {
        font-size: 0.82rem;
        color: #64748b;
        margin-top: 0.2rem;
    }