footer {
    background: #000000;
    color: white;
    padding: 40px 30px;
    border-top: 6px solid #296a4e;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 30px;
    text-align: left;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-grid h4 {
    margin: 0 0 12px 0;
    font-size: 16px;
    color: #296a4e;
    font-weight: 700;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #296a4e;
    padding-bottom: 10px;
}

.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid li {
    padding: 8px 0;
    font-size: 13px;
    color: #ffffff;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.footer-grid li:hover {
    color: #296a4e;
    padding-left: 10px;
}

.qrcode-section {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.qrcode-container {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
    margin-top: 15px;
}

.qrcode-image {
    width: 120px;
    height: 120px;
    border: 2px solid #296a4e;
    padding: 4px;
    background: white;
}

.telegram-text {
    font-size: 12px;
    color: #999;
    margin: 10px 0 15px 0;
    text-align: center;
}

.live-button {
    background: #296a4e;
    color: #ffffff;
    border: none;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.live-button:hover {
    background: #53a682;
    transform: scale(1.05);
}

#lang-dropdown {
    position: absolute;
    display: none;
    list-style: none;
    background: white;
    color: #1a1a1a;
    border-radius: 10px;
    padding: 12px 0;
    margin-top: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 140px;
    z-index: 102;
}

#lang-dropdown li {
    padding: 12px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
}

#lang-dropdown li:hover {
    background: #f5f7fa;
    color: #296a4e;
    padding-left: 24px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}