.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
}

.site-footer {
    background-color: #000;
    color: #fff;
    padding: 3rem 1.5rem;
    font-family: 'Reddit Sans', sans-serif;
}

.footer-links {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    max-width: 100%;
    margin: 0;
    padding-left: 2rem;
}


.footer-section {
    flex: 1;
    min-width: 220px;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
    color: #ccc;
    font-size: 0.95rem;
}

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

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

.company-info li {
    color: #ccc;
    margin-bottom: 0.7rem;
}

/* Footer bottom copyright */
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: underline;
}

.footer-bottom a:hover {
    color: #fff;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
}

.modal-content h2 {
    margin-top: 0;
    font-size: 1.5rem;
}

.modal-content p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

.close {
    color: #aaa;
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close:hover {
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 1rem;
    }
    .footer-section h4 {
        font-size: 1rem;
    }
    .footer-section ul li {
        font-size: 0.9rem;
    }

    .footer-links {
        flex-direction: column;
        text-align: center;
    }
    .footer-section {
        margin-bottom: 2rem;
    }

    .modal-content {
        width: 95%;
        margin: 20% auto;
        padding: 20px;
        font-size: 0.9rem;
    }

    .modal-content h2 {
        font-size: 1.2rem;
    }

    .modal-content p {
        font-size: 0.9rem;
    }

    .close {
        font-size: 22px;
        top: 10px;
        right: 15px;
    }
}


