:root {
    --brand-color: #fc6804;
    --brand-dark: #d95700;
    --brand-light: #fff3ea;
    --text-primary: #1f2933;
    --text-secondary: #52606d;
    --border-light: #e4e7eb;
    --background-main: #f4f6f8;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: var(--background-main);
    text-align: center;
    color: var(--text-primary);
}

.container {
    max-width: 480px;
    margin: auto;
    padding: 40px 20px;
}

.logo {
    width: 120px;
    margin-bottom: 12px;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 35px;
    letter-spacing: 0.3px;
}

.link-btn {
    display: block;
    background: var(--brand-color);
    color: white;
    padding: 16px;
    margin: 14px 0;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}

    .link-btn:hover {
        background: var(--brand-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(0,0,0,0.12);
    }

.contact-section {
    margin-top: 45px;
}

.contact-btn {
    display: block;
    padding: 14px;
    margin: 12px 0;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    transition: all 0.2s ease;
}

    .contact-btn:hover {
        background: var(--brand-light);
        border-color: var(--brand-color);
    }

    .contact-btn.secondary {
        background: var(--brand-light);
        border-color: var(--brand-color);
        font-weight: 600;
    }

.schedule {
    margin-top: 18px;
    font-size: 14px;
    color: var(--text-secondary);
}


a,
a:visited,
a:hover,
a:active {
    color: #000;
}




.link-btn.disabled {
    background: #cccccc;
    cursor: not-allowed;
    opacity: 0.85;
    pointer-events: none;
}

.link-btn .badge {
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin-top: 4px;
}
