.footer {
    background-color: #f5f5f5;
    padding: 24px 16px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    font-family: Arial, sans-serif;
}

.footer__link {
    display: inline-block;
    margin: 0 12px;
    font-size: 14px;
}

.footer__link a {
    color: #1a73e8;
    text-decoration: none;
    transition: color 0.3s;
    padding: 4px 8px;
    border-radius: 4px;
}

.footer__link a:hover {
    color: #0d47a1;
    background-color: rgba(26, 115, 232, 0.1);
    text-decoration: underline;
}

@media (max-width: 480px) {
    .footer__link {
        display: block;
        margin: 8px 0;
    }
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: #f8f8f8;
    border-top: 1px solid #e0e0e0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.cookie-text {
    flex: 1;
    min-width: 200px;
    color: #333;
    margin-bottom: 10px;
}

.cookie-text a {
    color: #4CAF50;
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-btn {
    padding: 8px 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}

.cookie-btn:hover {
    background: #45a049;
}

@media (min-width: 768px) {
    .cookie-notice {
        left: 50%;
        right: auto;
        bottom: 20px;
        max-width: 600px;
        transform: translateX(-50%);
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}