body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background-color: #3b241a;
    color: #f5f5f5;
}

footer {
    background-color: #45261a;
    padding: 60px 8%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    line-height: 1.6;
}

.footer-logo {
    flex: 1 1 250px;
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 120px;
    margin-bottom: 10px;
}

.footer-logo h2 {
    font-family: "Georgia", serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin: 5px 0;
}

.footer-logo p {
    color: #d3d3d3;
    font-size: 0.95rem;
    margin: 5px 0;
}

.footer-logo strong {
    color: #fff;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: #fff;
    margin: 0 8px;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #d1a35e;
}

.footer-links {
    flex: 1 1 200px;
    margin: 20px 0;
}

.footer-links h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    color: #d3d3d3;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-about {
    flex: 1 1 300px;
    margin: 20px 0;
}

.footer-about h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-about p {
    color: #d3d3d3;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #c7c7c7;
    border-top: 1px solid #3a2a25;
    padding: 20px 0;
}

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

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

/* ===== Responsive ===== */
@media (max-width: 768px) {
    footer {
    flex-direction: column;
    text-align: center;
    }
    .footer-links, .footer-about {
    margin: 15px 0;
    }
}