.footer {
    background: #065a08;
    color: white;
    padding: 80px 0 30px;
}

.footer-container {
    width: 1200px;
    max-width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-col {
    flex: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-brand img {
    width: 60px;
}

.footer-brand h3 {
    font-size: 26px;
    line-height: 1.3;
}

.footer hr {
    margin: 20px 0;
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.3);
    width: 70%;
}

.footer h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.footer-line {
    width: 50px;
    height: 3px;
    background: white;
    margin-bottom: 20px;
}

.footer p {
    margin-bottom: 10px;
    line-height: 1.6;
    opacity: 0.95;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    background: #9fdc9f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #065a08;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: white;
    color: #065a08;
    transform: translateY(-3px);
}

.footer-map {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
}

.footer-bottom {
    text-align: center;
    margin-top: 60px;
    font-size: 14px;
    opacity: 0.8;
}