.footer-text-block {
    max-width: 1300px;
    margin: 30px auto;
    padding: 20px;
   
    border-top: 1px solid #eee;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
}

.footer-text-block p {
    margin-bottom: 1em;
}

.footer-text-toggle {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: #2271b1;
    color: white;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-text-toggle:hover {
    background: #135e96;
    transform: translateY(-1px);
}

.footer-text-full {
    display: none;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}