.footer {
    background-color: #ecc19c;
    color: #3d3d3d;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo img {
    max-width: 250px;
    height: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    width: 90%;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-about,
.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-about h3,
.footer-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-about p,
.footer-contact p {
    font-size: 1rem;
    margin: 0;
    margin-bottom: 10px;
}

.footer-contact a {
    color: #2f2f2f;
    text-decoration: none;
    font-weight: bold;
}

.footer-contact a:hover {
    color: darkblue;
}

.footer-links {
    align-self: flex-end;
    text-align: right;
    width: 100%;
}

.footer-links a {
    font-size: 0.9rem;
    margin-left: 20px;
    color: #2f2f2f;
    text-decoration: none;
    font-weight: bold;
}

.footer-links a:hover {
    text-decoration: underline;
}