.footer {
    position: fixed;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 32px;
    box-sizing: border-box;

    background: #297045;
    border-top: 1px solid rgba(255, 255, 255, 0.1);

    z-index: 1000;
}

.footer-logo-flower {
    width: 64px;
    height: 64px;
}
.footer-logo-flower:hover {
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
    transform: scale(1.05);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-text {
    color: #FEF9FF;
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-contact {
    text-align: right;
    font-size: 0.85rem;
    line-height: 1.5;
}
.footer-contact a {
    color: inherit;
    text-decoration: none;
}
.footer-contact a:hover {
    text-decoration: underline;
}
