@media (max-width: 768px) {
    .dmlogo, .ahlogo, .jmlogo {
        width: 300px;
        height: 300px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}

.feedback-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0d6efd;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.2s, background-color 0.2s;
}
.feedback-btn:hover {
    transform: scale(1.1);
    background-color: #0b5ed7;
}
@media (max-width: 768px) {
    .feedback-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}



/* Плавающая полоса снизу */
.floating-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #666, #444); /* Серый градиент */
    color: #fff;
    text-align: center;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: 500;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: all 0.3s ease-in-out;
}
.floating-bar a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.floating-bar a:hover {
    color: #e0e0e0;
    text-decoration: none;
}

/* Адаптивность под экран */
@media (max-width: 768px) {
    .floating-bar {
        font-size: 0.9rem;
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .floating-bar {
        font-size: 0.8rem;
        padding: 6px 8px;
    }
}