body {
    background: #181818;
    color: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header, footer {
    background: #181818;
}

.sticky-menu nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    padding: 12px 0 0 0;
}

.sticky-menu nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.08rem;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.sticky-menu nav a:hover {
    background: #222;
    color: #ff4a00;
}

.cta-btn {
    background: #ff4a00;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    padding: 12px 32px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.cta-btn:hover {
    background: #ffb300;
    color: #222 !important;
}

.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 16px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 6px;
}

.footer-links-list a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links-list a:hover {
    color: #ff4a00;
}

a {
    color: #ff4a00;
    text-decoration: underline;
    transition: color 0.2s;
}

a:hover {
    color: #ffb300;
}

h1, h2, h3, h4 {
    color: #ff4a00;
    font-weight: 700;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: #222;
    color: #fff;
}

table th, table td {
    border: 1px solid #333;
    padding: 10px 8px;
    text-align: left;
}

table th {
    background: #181818;
    color: #ffb300;
}

@media (max-width: 700px) {
    .section {
        padding: 18px 4vw;
    }
    .sticky-menu nav {
        gap: 8px;
        font-size: 0.98rem;
    }
    table th, table td {
        font-size: 0.98rem;
        padding: 7px 4px;
    }
}
