footer {
    background-color: #202020;
    color: #ffffff;
    padding: 40px 0 20px;
    margin-top: 40px;
    border-top: 4px solid #096C6C; /* Brand blue, same depth as header */
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: #BE5103; /* Brand orange for headings */
    margin-bottom: 15px;
}

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

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

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #BE5103; /* Brand orange on hover */
}

.social-links a {
    display: inline-block;
    margin-right: 10px;
    padding: 8px 12px;
    background-color: #BE5103; /* Brand orange background */
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #096C6C; /* Brand blue on hover */
}

.newsletter-form input {
    border: 1px solid #555;
    background-color: #555;
    color: #ffffff;
}

.newsletter-form input::placeholder {
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}