/* Footer background */
.footer {
    background: #2d0b00;
    color: #fff;
    padding: 40px 20px 20px;
    font-family: system-ui, sans-serif;
}

/* Top sections layout */
.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

/* Section titles */
.footer-section h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

/* Paragraph text */
.footer-section p {
    color: #ddd;
    line-height: 1.5;
}

/* Links list */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 6px;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: 0.2s;
}

.footer-section a:hover {
    color: #ffcc66;
}

/* Bottom bar */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #bbb;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
