.site-footer {
    background-color: #222;
    color: #fff;
    padding: 40px 0 10px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
    gap: 20px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    margin-bottom: 15px;
    color: #f1f1f1;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}


.site-footer {
    background: #222;
    color: #fff;
    width: 100%;
}

.footer-container {
    display: flex;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
}

.footer-column {
    flex: 1;
    padding: 15px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .footer-container {
        flex-direction: column;
        padding: 15px;
    }

    .footer-column {
        width: 100%;
        text-align: center;
    }
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1100px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.logo a {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.nav-list li a:hover {
    color: #007bff;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}
