#cookie-consent-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    color: #333333;
    padding: 20px 25px;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    font-family: inherit;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: 8px;
    border-left: 4px solid #466954;
}

.cookie-text {
    flex: 1;
    margin-right: 30px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.cookie-text p {
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s ease;
    text-align: center;
}

.accept-btn {
    background-color: #466954;
    color: white;
    box-shadow: 0 2px 4px rgba(70, 105, 84, 0.2);
}

.accept-btn:hover {
    background-color: #385847;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(70, 105, 84, 0.3);
}

.reject-btn {
    background-color: #f2f1e9;
    color: #333;
    border: 1px solid #e0e0e0;
}

.reject-btn:hover {
    background-color: #e5e4dc;
    transform: translateY(-2px);
}

.settings-btn {
    background-color: transparent;
    color: #466954;
    text-decoration: underline;
    padding: 10px 0;
    font-weight: 500;
}

.settings-btn:hover {
    color: #385847;
    text-decoration: none;
}

@media (max-width: 768px) {
    #cookie-consent-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 15px 20px;
    }
    
    .cookie-text {
        margin-right: 0;
        margin-bottom: 15px;
        font-size: 13px;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    #cookie-consent-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        flex-direction: row;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .settings-btn {
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }
}